1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-30 08:26:45 +02:00

Fixed clang error, disabling the execute module.

This commit is contained in:
Jman012
2014-03-08 23:42:37 -08:00
parent d08feb2cc5
commit e8cd1417b7
2 changed files with 4 additions and 4 deletions

View File

@ -70,8 +70,8 @@ void print_time(WINDOW *window)
wattroff(window,COLOR_PAIR(BLUE));
}
/* Returns true if the string is empty, false otherwise */
bool string_is_empty(char *string)
/* Returns 1 if the string is empty, 0 otherwise */
int string_is_empty(char *string)
{
return string[0] == '\0';
}