svn commit: r306428 - stable/10/usr.sbin/portsnap/phttpget
Ed Maste
emaste at FreeBSD.org
Thu Sep 29 01:53:30 UTC 2016
Author: emaste
Date: Thu Sep 29 01:53:29 2016
New Revision: 306428
URL: https://svnweb.freebsd.org/changeset/base/306428
Log:
MFC (part of) r298089 by pfg: Cleanup unnecessary semicolons
Modified:
stable/10/usr.sbin/portsnap/phttpget/phttpget.c
Modified: stable/10/usr.sbin/portsnap/phttpget/phttpget.c
==============================================================================
--- stable/10/usr.sbin/portsnap/phttpget/phttpget.c Thu Sep 29 01:47:02 2016 (r306427)
+++ stable/10/usr.sbin/portsnap/phttpget/phttpget.c Thu Sep 29 01:53:29 2016 (r306428)
@@ -598,7 +598,7 @@ main(int argc, char *argv[])
fd = open(fname, O_CREAT | O_TRUNC | O_WRONLY, 0644);
if (fd == -1)
errx(1, "open(%s)", fname);
- };
+ }
/* Read the message and send data to fd if appropriate */
if (chunked) {
More information about the svn-src-all
mailing list