Skip to content
Snippets Groups Projects
Commit 4364d830 authored by rswindell's avatar rswindell
Browse files

Fix gcc warnings about #warning usage (missing terminating ' char)

parent 64a02f34
Branches
Tags
No related merge requests found
...@@ -173,7 +173,7 @@ cooked_tty(void) ...@@ -173,7 +173,7 @@ cooked_tty(void)
| ENABLE_EXTENDED_FLAGS | ENABLE_INSERT_MODE | ENABLE_LINE_INPUT | ENABLE_EXTENDED_FLAGS | ENABLE_INSERT_MODE | ENABLE_LINE_INPUT
| ENABLE_MOUSE_INPUT | ENABLE_PROCESSED_INPUT | ENABLE_QUICK_EDIT_MODE); | ENABLE_MOUSE_INPUT | ENABLE_PROCESSED_INPUT | ENABLE_QUICK_EDIT_MODE);
#else #else
#warning Can't cook the tty on this platform #warning "Can't cook the tty on this platform"
#endif #endif
} }
} }
...@@ -203,7 +203,7 @@ raw_tty(void) ...@@ -203,7 +203,7 @@ raw_tty(void)
#elif defined _WIN32 #elif defined _WIN32
SetConsoleMode(GetStdHandle(STD_INPUT_HANDLE), 0); SetConsoleMode(GetStdHandle(STD_INPUT_HANDLE), 0);
#else #else
#warning Can't set the tty as raw on this platform #warning "Can't set the tty as raw on this platform"
#endif #endif
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment