hunt down improper include <>, make mkswap output 4Gb+ friendly
authorDenis Vlasenko <vda.linux@googlemail.com>
Fri, 24 Nov 2006 15:38:03 +0000 (15:38 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Fri, 24 Nov 2006 15:38:03 +0000 (15:38 -0000)
libbb/fclose_nonstdin.c
libbb/perror_nomsg.c
libbb/warn_ignoring_args.c
shell/bbsh.c
util-linux/mkswap.c

index 951ab30d6b2579180cef15d3f772b1c076d5999e..88e8474f2bd95443cb6a66fb1e00d1ab56f30ed8 100644 (file)
@@ -12,8 +12,7 @@
  * here to save a little space.
  */
 
-#include <stdio.h>
-#include <libbb.h>
+#include "libbb.h"
 
 int fclose_if_not_stdin(FILE *f)
 {
index 3a5079b992c061136a27d4102ac41064f829a0fd..3aefd530185914790abd7546060ea1a9e501e43d 100644 (file)
@@ -7,8 +7,7 @@
  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
 
-#include <stddef.h>
-#include <libbb.h>
+#include "libbb.h"
 
 void bb_perror_nomsg(void)
 {
index 6405ff82645a3c41062dfa7a299256e244a98f7e..be78a441448e424dd734cefa71b5514a8d54d8f0 100644 (file)
@@ -7,7 +7,7 @@
  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
 
-#include <libbb.h>
+#include "libbb.h"
 
 void bb_warn_ignoring_args(int n)
 {
index 791983a3af24522fd9435a078199ea4673ad42dc..99e4f61fbe9986feb60792106d56dc984fae7c1b 100644 (file)
@@ -36,7 +36,7 @@
   echo `echo hello#comment " woot` and more
 */
 
-#include <busybox.h>
+#include "busybox.h"
 
 // A single executable, its arguments, and other information we know about it.
 #define BBSH_FLAG_EXIT    1
index 2dee5ac188f6a24ce1d3af3830ca0dbf6b1dc667..7baa3ecfb4ecef55b9ddd87eaa2f7d6ceffa5a5b 100644 (file)
@@ -6,7 +6,7 @@
  * Licensed under GPL version 2, see file LICENSE in this tarball for details.
  */
 
-#include <busybox.h>
+#include "busybox.h"
 
 int mkswap_main(int argc, char *argv[])
 {
@@ -16,18 +16,19 @@ int mkswap_main(int argc, char *argv[])
 
        // No options supported.
 
-       if (argc!=2) bb_show_usage();
+       if (argc != 2) bb_show_usage();
 
        // Figure out how big the device is and announce our intentions.
 
-       fd = xopen(argv[1],O_RDWR);
+       fd = xopen(argv[1], O_RDWR);
        len = fdlength(fd);
        pagesize = getpagesize();
-       printf("Setting up swapspace version 1, size = %ld bytes\n", (long)(len-pagesize));
+       printf("Setting up swapspace version 1, size = %"OFF_FMT"d bytes\n",
+                       len - pagesize);
 
        // Make a header.
 
-       memset(hdr, 0, 129 * sizeof(unsigned int));
+       memset(hdr, 0, sizeof(hdr));
        hdr[0] = 1;
        hdr[1] = (len / pagesize) - 1;
 
@@ -35,7 +36,7 @@ int mkswap_main(int argc, char *argv[])
        // signature on disk (not in cache) during swapon.
 
        xlseek(fd, 1024, SEEK_SET);
-       xwrite(fd, hdr, 129 * sizeof(unsigned int));
+       xwrite(fd, hdr, sizeof(hdr));
        xlseek(fd, pagesize-10, SEEK_SET);
        xwrite(fd, "SWAPSPACE2", 10);
        fsync(fd);