diff srogue/options.c @ 283:d71e5e1f49cf

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