xfunc: fix: && -> &. Also nuked two double semicolons...
authorDenis Vlasenko <vda.linux@googlemail.com>
Tue, 5 Sep 2006 09:36:19 +0000 (09:36 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Tue, 5 Sep 2006 09:36:19 +0000 (09:36 -0000)
console-tools/setlogcons.c
libbb/xfuncs.c

index 6667eb622574adad9967a9e5c63af09fe650d5c6..9d1ef5492e0374477d3bcb1bf92e54dac3bdd75d 100644 (file)
@@ -25,7 +25,7 @@ extern int setlogcons_main(int argc, char **argv)
                arg.subarg = atoi(argv[1]);
 
        if (ioctl(xopen(VC_1, O_RDONLY), TIOCLINUX, &arg))
-               bb_perror_msg_and_die("TIOCLINUX");;
+               bb_perror_msg_and_die("TIOCLINUX");
 
        return 0;
 }
index 116cff459de474a459db1b524fca13b8cd2a8cb8..850721e3e46f87d4232d742a42657e084485ab53 100644 (file)
@@ -108,7 +108,7 @@ FILE *xfopen(const char *path, const char *mode)
 /* Die if we can't open an existing file and return an fd. */
 int xopen(const char *pathname, int flags)
 {
-       if (ENABLE_DEBUG && (flags && O_CREAT))
+       if (ENABLE_DEBUG && (flags & O_CREAT))
                bb_error_msg_and_die("xopen() with O_CREAT\n");
 
        return xopen3(pathname, flags, 0777);
@@ -349,7 +349,7 @@ off_t fdlength(int fd)
        do {
                char temp;
 
-               pos = bottom + (top - bottom) / 2;;
+               pos = bottom + (top - bottom) / 2;
 
                /* If we can read from the current location, it's bigger. */