diff arogue5/util.c @ 283:d71e5e1f49cf

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