summaryrefslogtreecommitdiffstats
path: root/usr.bin/kzip
diff options
context:
space:
mode:
authorkris <kris@FreeBSD.org>2000-07-10 09:14:15 +0000
committerkris <kris@FreeBSD.org>2000-07-10 09:14:15 +0000
commit74a1be3402cdf41e683eb2ad6e6967a9a09269fd (patch)
tree6194aa20dae4554ce49c6f047f381a9a927655f7 /usr.bin/kzip
parentd84b4d3f4d875bdc29e1af239bfea2dadaff8f85 (diff)
downloadFreeBSD-src-74a1be3402cdf41e683eb2ad6e6967a9a09269fd.zip
FreeBSD-src-74a1be3402cdf41e683eb2ad6e6967a9a09269fd.tar.gz
Don't call err() with no format string.
Diffstat (limited to 'usr.bin/kzip')
-rw-r--r--usr.bin/kzip/kzip.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/kzip/kzip.c b/usr.bin/kzip/kzip.c
index 97e1a4d..5af945a 100644
--- a/usr.bin/kzip/kzip.c
+++ b/usr.bin/kzip/kzip.c
@@ -85,13 +85,13 @@ main(int argc, char **argv)
fdi = open(kernname ,O_RDONLY);
if(fdi<0) {
- warn(kernname);
+ warn("%s", kernname);
return 2;
}
/* figure out how big the uncompressed image will be */
if (read (fdi, (char *)&hdr, sizeof(hdr)) != sizeof(hdr))
- err(2, argv[1]);
+ err(2, "%s", argv[1]);
size = hdr.a_text + hdr.a_data + hdr.a_bss;
entry = hdr.a_entry & 0x00FFFFFF;
@@ -106,7 +106,7 @@ main(int argc, char **argv)
fdo = open(obj,O_WRONLY|O_TRUNC|O_CREAT,0666);
if(fdo<0) {
- warn(obj);
+ warn("%s", obj);
return 2;
}
@@ -222,13 +222,13 @@ main(int argc, char **argv)
fdn = open(obj ,O_RDONLY);
if(fdn<0) {
- warn(obj);
+ warn("%s", obj);
return 3;
}
/* figure out how big the compressed image is */
if (read (fdn, (char *)&hdr, sizeof(hdr)) != sizeof(hdr)) {
- warn(obj);
+ warn("%s", obj);
return 3;
}
close(fdn);
@@ -251,11 +251,11 @@ extract (char *file)
struct exec hdr;
if (read (0, (char *)&hdr, sizeof(hdr)) != sizeof(hdr))
- err(2, file);
+ err(2, "%s", file);
if (hdr.a_magic != ZMAGIC)
errx(2, "bad magic in file %s, probably not a kernel", file);
if (lseek (0, N_TXTOFF(hdr), 0) < 0)
- err(2, file);
+ err(2, "%s", file);
sz = N_SYMOFF (hdr) - N_TXTOFF (hdr);
@@ -269,7 +269,7 @@ extract (char *file)
n = read (0, buf, l);
if (n != l) {
if (n == -1)
- err(1, file);
+ err(1, "%s", file);
else
errx(1, "unexpected EOF");
}
OpenPOWER on IntegriCloud