summaryrefslogtreecommitdiff
path: root/console-tools/loadfont.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-10-19 20:03:34 +0000
committerEric Andersen <andersen@codepoet.org>1999-10-19 20:03:34 +0000
commite77ae3a2c0328590b43447550bdb1284650b8236 (patch)
tree1e46d5cf36870771a4f3cedfe84f6161c3871131 /console-tools/loadfont.c
parenta3f09076ef5e9a2c26b4d0728cd066bba6c474e4 (diff)
downloadbusybox-w32-e77ae3a2c0328590b43447550bdb1284650b8236.tar.gz
busybox-w32-e77ae3a2c0328590b43447550bdb1284650b8236.tar.bz2
busybox-w32-e77ae3a2c0328590b43447550bdb1284650b8236.zip
Added sfdisk. Ststic-ified a bunch of stuff.
Diffstat (limited to 'console-tools/loadfont.c')
-rw-r--r--console-tools/loadfont.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/console-tools/loadfont.c b/console-tools/loadfont.c
index a10fa8a69..e44525d9c 100644
--- a/console-tools/loadfont.c
+++ b/console-tools/loadfont.c
@@ -75,7 +75,7 @@ do_loadfont(int fd, char *inbuf, int unit, int fontsize) {
75 for (i = 0; i < fontsize; i++) 75 for (i = 0; i < fontsize; i++)
76 memcpy(buf+(32*i), inbuf+(unit*i), unit); 76 memcpy(buf+(32*i), inbuf+(unit*i), unit);
77 77
78#if defined( PIO_FONTX ) && !defined( sparc ) 78#if defined( PIO_FONTX ) && !defined( __sparc__ )
79 { 79 {
80 struct consolefontdesc cfd; 80 struct consolefontdesc cfd;
81 81
@@ -196,7 +196,7 @@ loadnewfont(int fd) {
196 exit(1); 196 exit(1);
197 } 197 }
198 fontsize = ((psfhdr.mode & PSF_MODE512) ? 512 : 256); 198 fontsize = ((psfhdr.mode & PSF_MODE512) ? 512 : 256);
199#if !defined( PIO_FONTX ) || defined( sparc ) 199#if !defined( PIO_FONTX ) || defined( __sparc__ )
200 if (fontsize != 256) { 200 if (fontsize != 256) {
201 fprintf(stderr, "Only fontsize 256 supported\n"); 201 fprintf(stderr, "Only fontsize 256 supported\n");
202 exit(1); 202 exit(1);