placate gcc-8.0.1 warnings
authorDenys Vlasenko <vda.linux@googlemail.com>
Fri, 6 Apr 2018 16:26:33 +0000 (18:26 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Fri, 6 Apr 2018 16:26:33 +0000 (18:26 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
libbb/dump.c
runit/sv.c

index db91fcfe7449d143b345b62f381ae1be698e2f0e..5941ef902c4d4833983e2bbd582943f51fc991fb 100644 (file)
@@ -464,11 +464,9 @@ static const char conv_str[] ALIGN1 =
        "\v"  "\\""v""\0"
        ;
 
-
 static void conv_c(PR *pr, unsigned char *p)
 {
        const char *str = conv_str;
-       char buf[10];
 
        do {
                if (*p == *str) {
@@ -482,7 +480,9 @@ static void conv_c(PR *pr, unsigned char *p)
                *pr->cchar = 'c';
                printf(pr->fmt, *p);
        } else {
-               sprintf(buf, "%03o", (int) *p);
+               char buf[4];
+               /* gcc-8.0.1 needs lots of casts to shut up */
+               sprintf(buf, "%03o", (unsigned)(uint8_t)*p);
                str = buf;
  strpr:
                *pr->cchar = 's';
index 86d1818724441ebb08e6b8110ca1f1ad50269b92..8054daedff4901dd7a1ca3d043131e2cc98d9105 100644 (file)
@@ -222,6 +222,7 @@ struct globals {
 #define str_equal(s,t) (strcmp((s), (t)) == 0)
 
 
+#if ENABLE_SV || ENABLE_SVC
 static void fatal_cannot(const char *m1) NORETURN;
 static void fatal_cannot(const char *m1)
 {
@@ -688,6 +689,7 @@ static int sv(char **argv)
        }
        return rc > 99 ? 99 : rc;
 }
+#endif
 
 #if ENABLE_SV
 int sv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;