Applied patch from David Douthitt to fix build error in df.c when
[oweals/busybox.git] / free.c
diff --git a/free.c b/free.c
index 4dd99ab498c3fc1d0d09740ade48f8a60dd3c490..41e872d12c689c8dafd8763e6ca6be5172bd426b 100644 (file)
--- a/free.c
+++ b/free.c
@@ -2,7 +2,7 @@
 /*
  * Mini free implementation for busybox
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 by Lineo, inc.
  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
  *
  */
 
-#include "busybox.h"
 #include <stdio.h>
 #include <errno.h>
 #include <stdlib.h>
+#include "busybox.h"
 
 extern int free_main(int argc, char **argv)
 {
@@ -46,7 +46,7 @@ extern int free_main(int argc, char **argv)
        info.bufferram/=info.mem_unit;
 
        if (argc > 1 && **(argv + 1) == '-')
-               usage(free_usage);
+               show_usage();
 
        printf("%6s%13s%13s%13s%13s%13s\n", "", "total", "used", "free", 
                        "shared", "buffers");