Things my compiler didn't catch...
authorManuel Novoa III <mjn3@codepoet.org>
Wed, 19 Mar 2003 09:42:02 +0000 (09:42 -0000)
committerManuel Novoa III <mjn3@codepoet.org>
Wed, 19 Mar 2003 09:42:02 +0000 (09:42 -0000)
coreutils/chgrp.c
coreutils/df.c
coreutils/od.c

index f5e5d29f159962560049cda1e99d1bdd84229e3e..ac3e81ad9d710ff2327174d73a420a3ac864a6aa 100644 (file)
@@ -47,7 +47,7 @@ static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
 int chgrp_main(int argc, char **argv)
 {
        long gid;
-       int recursiveFlag;;
+       int recursiveFlag;
        int retval = EXIT_SUCCESS;
        char *p;
 
index 7d007a0034068abcb3378fd907f9cd8ba4ed3ac5..cbe3169202bc24b7b2b421f84c27102d55be5159 100644 (file)
@@ -59,7 +59,7 @@ extern int df_main(int argc, char **argv)
        FILE *mount_table;
        struct mntent *mount_entry;
        struct statfs s;
-       static const char hdr_1k[] = "1k-blocks"; /* default display is kilobytes */;
+       static const char hdr_1k[] = "1k-blocks"; /* default display is kilobytes */
        const char *disp_units_hdr = hdr_1k;
 
        while ((opt = getopt(argc, argv, "k"
index 5eaaf502482debc1776075ad935ed6df1b49e9d3..b18c53c3f8736c8828af4db7b87ac23cd62c7199 100644 (file)
@@ -167,10 +167,10 @@ static const signed char od_o2si[] = {
 int od_main(int argc, char **argv)
 {
        int ch;
-       bb_dump_vflag = FIRST;
-       bb_dump_length = -1;
        int first = 1;
        signed char *p;
+       bb_dump_vflag = FIRST;
+       bb_dump_length = -1;
 
        while ((ch = getopt(argc, argv, od_opts)) > 0) {
                if (((p = strchr(od_opts, ch)) != NULL) && (*p >= 0)) {