diff xrogue/util.c @ 283:d71e5e1f49cf

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