osl_core.h: Replace static inline by _static_inline_.
[paraslash.git] / para.h
diff --git a/para.h b/para.h
index 0cb1538d2725fd79c7de01871bcb617bcd73c706..403ca7d43e91882df6bce3e8e00de71408bfbb5f 100644 (file)
--- a/para.h
+++ b/para.h
@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright (C) 1997-2007 Andre Noll <maan@systemlinux.org>
+ * Copyright (C) 1997-2008 Andre Noll <maan@systemlinux.org>
  *
  * Licensed under the GPL v2. For licencing details see COPYING.
  */
  *
  * Licensed under the GPL v2. For licencing details see COPYING.
  */
        }
 
 /** version text used by various commands if -V switch was given */
        }
 
 /** version text used by various commands if -V switch was given */
-#define VERSION_TEXT(prefix) "para_" prefix " " PACKAGE_VERSION "\n" \
+#define VERSION_TEXT(prefix) "para_" prefix " " PACKAGE_VERSION " (" CODENAME ")" "\n" \
        "Copyright (C) 2007 Andre Noll\n" \
        "This is free software with ABSOLUTELY NO WARRANTY." \
        " See COPYING for details.\n" \
        "Copyright (C) 2007 Andre Noll\n" \
        "This is free software with ABSOLUTELY NO WARRANTY." \
        " See COPYING for details.\n" \
@@ -213,7 +213,7 @@ static inline long int para_random(unsigned max)
 }
 
 /** Round up x to a multiple of y */
 }
 
 /** Round up x to a multiple of y */
-#define ROUND_UP(x, y) (((x) + (y - 1) / (y)) * (y))
+#define ROUND_UP(x, y) (((x) + ((y) - 1) / (y)) * (y))
 
 /** Get the size of an array */
 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
 
 /** Get the size of an array */
 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))