]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - para.h
http_send.c: Only pass the fd to host_in_access_perm_list().
[paraslash.git] / para.h
diff --git a/para.h b/para.h
index 0cb1538d2725fd79c7de01871bcb617bcd73c706..d17a5613a30798932a695d9aa99f6452218403ba 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.
  */
@@ -213,7 +213,7 @@ static inline long int para_random(unsigned max)
 }
 
 /** 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]))