diff options
| author | H. Peter Anvin <hpa@zytor.com> | 2007-06-05 22:48:15 -0700 |
|---|---|---|
| committer | H. Peter Anvin <hpa@zytor.com> | 2007-06-05 22:48:15 -0700 |
| commit | 7b3cf97105e680c0292f67d49baf1b8abb855b62 (patch) | |
| tree | 706ac3d9009542d61f4dcdafdd4cc2deaf9d3964 /com32/lib | |
| parent | 35cb26904488947c9950bbc10dfac3f69b25510b (diff) | |
| download | syslinux-7b3cf97105e680c0292f67d49baf1b8abb855b62.tar.gz | |
Stealth whitespace cleanup
Diffstat (limited to 'com32/lib')
| -rw-r--r-- | com32/lib/Makefile | 2 | ||||
| -rw-r--r-- | com32/lib/sys/vesa/background.c | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/com32/lib/Makefile b/com32/lib/Makefile index f2713aa4..b759cd01 100644 --- a/com32/lib/Makefile +++ b/com32/lib/Makefile @@ -72,7 +72,7 @@ LIBOBJS = \ syslinux/shuffle_rm.o syslinux/zonelist.o \ syslinux/dump_mmap.o syslinux/dump_movelist.o \ \ - syslinux/run_default.o syslinux/run_command.o \ + syslinux/run_default.o syslinux/run_command.o \ syslinux/cleanup.o syslinux/localboot.o syslinux/runimage.o \ \ syslinux/loadfile.o \ diff --git a/com32/lib/sys/vesa/background.c b/com32/lib/sys/vesa/background.c index 0c5a0571..cc515fb0 100644 --- a/com32/lib/sys/vesa/background.c +++ b/com32/lib/sys/vesa/background.c @@ -283,10 +283,10 @@ int vesacon_load_background(const char *filename) if (!fp) goto err; - + if (fread(header, 1, 8, fp) != 8) goto err; - + if (!png_sig_cmp(header, 0, 8)) { rv = read_png_file(fp); } else if (!jpeg_sig_cmp(header, 8)) { @@ -295,11 +295,11 @@ int vesacon_load_background(const char *filename) /* This actually displays the stuff */ draw_background(); - + err: if (fp) fclose(fp); - + return rv; } |
