From 4364d83038aed34e027495f861e3fe71fdfefacf Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Sat, 6 Jan 2018 02:45:19 +0000
Subject: [PATCH] Fix gcc warnings about #warning usage (missing terminating '
 char)

---
 src/sbbs3/jsexec.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/sbbs3/jsexec.c b/src/sbbs3/jsexec.c
index 1711f3413c..3635eb2c0f 100644
--- a/src/sbbs3/jsexec.c
+++ b/src/sbbs3/jsexec.c
@@ -173,7 +173,7 @@ cooked_tty(void)
 		    | ENABLE_EXTENDED_FLAGS | ENABLE_INSERT_MODE | ENABLE_LINE_INPUT
 		    | ENABLE_MOUSE_INPUT | ENABLE_PROCESSED_INPUT | ENABLE_QUICK_EDIT_MODE);
 #else
-		#warning Can't cook the tty on this platform
+		#warning "Can't cook the tty on this platform"
 #endif
 	}
 }
@@ -203,7 +203,7 @@ raw_tty(void)
 #elif defined _WIN32
 		SetConsoleMode(GetStdHandle(STD_INPUT_HANDLE), 0);
 #else
-		#warning Can't set the tty as raw on this platform
+		#warning "Can't set the tty as raw on this platform"
 #endif
 	}
 }
-- 
GitLab