Whamcloud - gitweb
libext2fs: use strcpy()/strcat() instead of sprintf() in bmap functions
[tools/e2fsprogs.git] / lib / ext2fs / tst_getsize.c
index 17f900c..4ac2ea1 100644 (file)
@@ -1,14 +1,15 @@
 /*
  * tst_getsize.c --- this function tests the getsize function
- * 
+ *
  * Copyright (C) 1997 by Theodore Ts'o.
- * 
+ *
  * %Begin-Header%
- * This file may be redistributed under the terms of the GNU Public
- * License.
+ * This file may be redistributed under the terms of the GNU Library
+ * General Public License, version 2.
  * %End-Header%
  */
 
+#include "config.h"
 #include <stdio.h>
 #include <string.h>
 #if HAVE_UNISTD_H
@@ -34,6 +35,7 @@ int main(int argc, const char *argv[])
                fprintf(stderr, "%s device\n", argv[0]);
                exit(1);
        }
+       add_error_table(&et_ext2_error_table);
        retval = ext2fs_get_device_size(argv[1], 1024, &blocks);
        if (retval) {
                com_err(argv[0], retval, "while getting device size");