PERFORCE change 193899 for review

Ilya Putsikau ilya at FreeBSD.org
Sun May 29 11:04:06 UTC 2011


http://p4web.freebsd.org/@@193899?ac=10

Change 193899 by ilya at ilya_triton2011 on 2011/05/29 11:03:51

	Add missing parentheses in FU_AT_LEAST macro

Affected files ...

.. //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_ipc.h#3 edit

Differences ...

==== //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_ipc.h#3 (text+ko) ====

@@ -37,7 +37,7 @@
     (spc2) = (char *)(fiov)->base + (sizeof(*(spc1))); \
 } while (0)
 
-#define FU_AT_LEAST(siz) max(siz, 128)
+#define FU_AT_LEAST(siz) max((siz), 128)
 
 struct fuse_ticket;
 struct fuse_data;


More information about the p4-projects mailing list