diff arogue7/util.c @ 283:d71e5e1f49cf

Fix a few more compiler warnings.
author John "Elwin" Edwards
date Mon, 18 Sep 2017 19:36:14 -0400
parents e1cd27c5464f
children e52a8a7ad4c5
line wrap: on
line diff
--- a/arogue7/util.c	Mon Sep 18 19:11:57 2017 -0400
+++ b/arogue7/util.c	Mon Sep 18 19:36:14 2017 -0400
@@ -1181,7 +1181,7 @@
 void
 strucpy(char *s1, char *s2, int len)
 {
-    register char *sp;
+    const char *sp;
 
     while (len--)
     {