svn commit: r342844 - stable/12/usr.bin/uuencode
Xin LI
delphij at FreeBSD.org
Mon Jan 7 07:12:53 UTC 2019
Author: delphij
Date: Mon Jan 7 07:12:51 2019
New Revision: 342844
URL: https://svnweb.freebsd.org/changeset/base/342844
Log:
MFC r340359:
Make outfile constant.
Modified:
stable/12/usr.bin/uuencode/uuencode.c
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/usr.bin/uuencode/uuencode.c
==============================================================================
--- stable/12/usr.bin/uuencode/uuencode.c Mon Jan 7 06:19:51 2019 (r342843)
+++ stable/12/usr.bin/uuencode/uuencode.c Mon Jan 7 07:12:51 2019 (r342844)
@@ -77,7 +77,7 @@ main(int argc, char *argv[])
struct stat sb;
int base64;
int ch;
- char *outfile;
+ const char *outfile;
base64 = 0;
outfile = NULL;
More information about the svn-src-stable
mailing list