Skip to content

Commit 0104405

Browse files
authored
chore: modify print statements for initialization and warnings
Updated initial print statements to include version info and modified warning message.
1 parent 7e225e2 commit 0104405

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ntstrings/main.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
#include <string.h>
1313

1414
int wmain(int argc, wchar_t** argv) {
15-
printf("[!] First scan will be slower, next scans will be faster.\n");
16-
printf("[+] Initializing...\n");
15+
printf("ntstrings - version v1.0.0 (Beta)\n\n");
1716

1817
if (!init_nt_api()) {
1918
return 1;
@@ -257,6 +256,7 @@ int wmain(int argc, wchar_t** argv) {
257256
tail.cap = 1024 * 1024;
258257
tail.buf = (char*)mem_alloc(tail.cap);
259258

259+
printf("[!] Warning: First scan are slower, next scans may be faster.\n");
260260
printf("[+] Scanning...\n");
261261

262262
if (dir_w) {
@@ -296,4 +296,4 @@ int wmain(int argc, wchar_t** argv) {
296296
cpp_cleanup();
297297

298298
return 0;
299-
}
299+
}

0 commit comments

Comments
 (0)