*: Fix new linter errors

This commit is contained in:
ZyX
2016-06-10 22:46:29 +03:00
parent 3676ad4530
commit ce234b0da5
3 changed files with 110 additions and 110 deletions

View File

@@ -60,7 +60,7 @@ static int height, width;
// See http://stackoverflow.com/a/11172679 for a better explanation of how it
// works.
#ifdef _MSC_VER
#define UI_CALL(funname, ...) \
# define UI_CALL(funname, ...) \
do { \
flush_cursor_update(); \
for (size_t i = 0; i < ui_count; i++) { \
@@ -69,7 +69,7 @@ static int height, width;
} \
} while (0)
#else
#define UI_CALL(...) \
# define UI_CALL(...) \
do { \
flush_cursor_update(); \
for (size_t i = 0; i < ui_count; i++) { \