Fix for use of dpkg-buildpackage -A
[rrq/maintain_lilo.git] / src / common.c
index 6baa69dd064d0335ecbb0e3fd037a35ccfd6c4e6..1a86aa18da6cbb8377777894c27260af85995afb 100644 (file)
@@ -1,14 +1,13 @@
-/* common.c  -  Common data structures and functions. */
-/*
-Copyright 1992-1998 Werner Almesberger.
-Copyright 1999-2005 John Coffman.
-All rights reserved.
-
-Licensed under the terms contained in the file 'COPYING' in the 
-source directory.
-
-*/
-
+/* common.c  -  Common data structures and functions
+ * 
+ * Copyright 1992-1998 Werner Almesberger
+ * Copyright 1999-2005 John Coffman
+ * Copyright 2009-2015 Joachim Wiedorn
+ * All rights reserved.
+ * 
+ * Licensed under the terms contained in the file 'COPYING'
+ * in the source directory.
+ */
 
 #define _GNU_SOURCE
 #include <unistd.h>
@@ -39,7 +38,7 @@ unsigned int prt_map[PRTMAP_SIZE+1];
 int curr_prt_map;
 #endif /* !__MSDOS__ */
 
-/*volatile*/ void pdie(char *msg)
+/*volatile*/ void pdie(const char *msg)
 {
     fflush(stdout);
 #if !__MSDOS__
@@ -51,7 +50,7 @@ int curr_prt_map;
 }
 
 
-/*volatile*/ void die(char *fmt,...)
+/*volatile*/ void __attribute__ ((format (printf, 1, 2))) die(const char *fmt,...)
 {
     va_list ap;
 
@@ -277,7 +276,7 @@ int main(int argc, char *argv[])
        fprintf(stderr, "*****Fatal:  INT != 4\n");
        return 1;
     }
-    if (sizeof(long)>sizeof(int))
+    if (sizeof(int32_t)>sizeof(int))
        fprintf(stderr, "**Note:  LONG is bigger than INT\n");
        
     return 0;