Skip to content

Commit

Permalink
Fix indentation in loguru_test.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Sep 22, 2018
1 parent f00ab4a commit 9feec0c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/loguru_test.cpp
Expand Up @@ -274,20 +274,20 @@ struct CallbackTester

void callbackPrint(void* user_data, const loguru::Message& message)
{
printf("Custom callback: %s%s\n", message.prefix, message.message);
reinterpret_cast<CallbackTester*>(user_data)->num_print += 1;
printf("Custom callback: %s%s\n", message.prefix, message.message);
reinterpret_cast<CallbackTester*>(user_data)->num_print += 1;
}

void callbackFlush(void* user_data)
{
printf("Custom callback flush\n");
reinterpret_cast<CallbackTester*>(user_data)->num_flush += 1;
reinterpret_cast<CallbackTester*>(user_data)->num_flush += 1;
}

void callbackClose(void* user_data)
{
printf("Custom callback close\n");
reinterpret_cast<CallbackTester*>(user_data)->num_close += 1;
reinterpret_cast<CallbackTester*>(user_data)->num_close += 1;
}

void test_log_callback()
Expand All @@ -312,8 +312,8 @@ void test_log_callback()
static int winDbgHook(int reportType, char *message, int *)
{
fprintf(stderr, "Report type: %d\nMessage: %s\n", reportType,
(nullptr != message ? message : "nullptr message"));
return 1; // To prevent the Abort, Retry, Ignore dialog
(nullptr != message ? message : "nullptr message"));
return 1; // To prevent the Abort, Retry, Ignore dialog
}
#endif

Expand Down

0 comments on commit 9feec0c

Please sign in to comment.