Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 991dd9c6fc414d178040824b2064711b > files > 2

eboard-1.1.1-7.fc15.src.rpm

Fix build with GCC 4.4

Lubomir Rintel <lkundrak@v3.sk>

--- eboard-1.1.1/ntext.cc.gcc44	2009-03-04 19:11:34.000000000 +0100
+++ eboard-1.1.1/ntext.cc	2009-03-04 20:04:20.000000000 +0100
@@ -244,8 +244,7 @@
     return;
   }
 
-  p = strchr(text, '\n');
-  if (p!=NULL) {
+  if (strchr(text, '\n')) {
     *p = 0;
     i = strlen(text);
     nl = new NLine(text, color);