Author: jmg
Date: Wed Jul 15 06:14:04 2015
New Revision: 285595
URL: https://svnweb.freebsd.org/changeset/base/285595

Log:
  fix error message...  errx since errno may not be set (if we didn't
  parse the full field), and err and errx add their own newline at the
  end...
  
  Sponsored by: Netflix, Inc.

Modified:
  head/usr.bin/ministat/ministat.c

Modified: head/usr.bin/ministat/ministat.c
==============================================================================
--- head/usr.bin/ministat/ministat.c    Wed Jul 15 02:23:55 2015        
(r285594)
+++ head/usr.bin/ministat/ministat.c    Wed Jul 15 06:14:04 2015        
(r285595)
@@ -487,7 +487,7 @@ ReadSet(const char *n, int column, const
 
                d = strtod(t, &p);
                if (p != NULL && *p != '\0')
-                       err(2, "Invalid data on line %d in %s\n", line, n);
+                       errx(2, "Invalid data on line %d in %s", line, n);
                if (*buf != '\0')
                        AddPoint(s, d);
        }
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to