svn commit: r345362 - head/contrib/elftoolchain/strings

Mariusz Zaborski oshogbo at FreeBSD.org
Thu Mar 21 06:20:34 UTC 2019


Author: oshogbo
Date: Thu Mar 21 06:20:33 2019
New Revision: 345362
URL: https://svnweb.freebsd.org/changeset/base/345362

Log:
  Fix powerpc and arm builds after r345361.
  
  Reported by:	jenkins

Modified:
  head/contrib/elftoolchain/strings/strings.c

Modified: head/contrib/elftoolchain/strings/strings.c
==============================================================================
--- head/contrib/elftoolchain/strings/strings.c	Thu Mar 21 05:24:44 2019	(r345361)
+++ head/contrib/elftoolchain/strings/strings.c	Thu Mar 21 06:20:33 2019	(r345362)
@@ -295,8 +295,8 @@ long
 getcharacter(FILE *pfile)
 {
 	long rt;
-	int i;
-	char buf[4], c;
+	int i, c;
+	char buf[4];
 
 	for(i = 0; i < encoding_size; i++) {
 		c = getc(pfile);


More information about the svn-src-head mailing list