From 6e6a6fd9a4b7bc667bc24ccebd82c17d7f6aeb93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Sun, 3 Apr 2022 23:42:44 +0800 Subject: [PATCH] typo --- base16384.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base16384.c b/base16384.c index 570ab5a..389c866 100644 --- a/base16384.c +++ b/base16384.c @@ -199,7 +199,7 @@ int main(int argc, char** argv) { fputs("\t-d decode\n", stderr); exit(EXIT_FAILURE); } - #ifdef __WINNT__ + #ifdef _WIN32 clock_t t = clock(); #else unsigned long t = get_start_ms(); @@ -209,7 +209,7 @@ int main(int argc, char** argv) { case 'd': decode_file(argv[2], argv[3]); break; default: break; } - #ifdef __WINNT__ + #ifdef _WIN32 printf("spend time: %lums\n", clock() - t); #else printf("spend time: %lums\n", get_start_ms() - t);