Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 May 2011 11:04:05 GMT
From:      Ilya Putsikau <ilya@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 193899 for review
Message-ID:  <201105291104.p4TB45d3081235@skunkworks.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@193899?ac=10

Change 193899 by ilya@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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201105291104.p4TB45d3081235>