Revision: 45543
          http://brlcad.svn.sourceforge.net/brlcad/?rev=45543&view=rev
Author:   brlcad
Date:     2011-07-19 20:09:05 +0000 (Tue, 19 Jul 2011)

Log Message:
-----------
quell warning on || && logic, wrap latter in parens

Modified Paths:
--------------
    brlcad/trunk/src/libbu/crashreport.c

Modified: brlcad/trunk/src/libbu/crashreport.c
===================================================================
--- brlcad/trunk/src/libbu/crashreport.c        2011-07-19 19:22:23 UTC (rev 
45542)
+++ brlcad/trunk/src/libbu/crashreport.c        2011-07-19 20:09:05 UTC (rev 
45543)
@@ -143,7 +143,9 @@
                size_t len;
                
                len = strlen(buffer);
-               if ((len == 0) || (len == 1) && (buffer[0] == '\n')) {
+               if ((len == 0)
+                   || ((len == 1) && (buffer[0] == '\n')))
+               {
                    continue;
                }
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Magic Quadrant for Content-Aware Data Loss Prevention
Research study explores the data loss prevention market. Includes in-depth
analysis on the changes within the DLP market, and the criteria used to
evaluate the strengths and weaknesses of these DLP solutions.
http://www.accelacomm.com/jaw/sfnl/114/51385063/
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to