diff options
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -23,9 +23,9 @@ int main() { printf("Welcome!\n\n"); do { // Removes the Line Feed character at the "end", if it exists - char *toChange = strchr(buffer, 0x0A); - if (toChange != NULL) - toChange[0] = 0; + char *p_toChange = strchr(buffer, 0x0A); + if (p_toChange != NULL) + p_toChange[0] = 0; if (buffer[0] > 0) if (route(buffer)) |
