This commit is contained in:
chacha
2026-02-27 22:09:15 +00:00
parent 7fa980e834
commit 9a22d9a0d5

5
main.c
View File

@@ -16,7 +16,6 @@
*/
#define _BSD_SOURCE 1
#define __STDC_WANT_LIB_EXT1__ 1
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
@@ -159,11 +158,11 @@ int main(int argc, char **argv)
break;
case 'l':
strcpy_s(sOptions.szLogFileName, 2048, optarg);
strcpy(sOptions.szLogFileName, optarg);
break;
case 't':
strcpy_s(sOptions.szTSVFile, 2048, optarg);
strcpy(sOptions.szTSVFile, optarg);
break;
case 'h':