Skip to content

Commit 2b21ba5

Browse files
committed
Optimized RAM using
1 parent d67233c commit 2b21ba5

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

spynix

20.5 KB
Binary file not shown.

src/hlp/hlp_info.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,5 @@ void print_hlp_info(void)
9393
void print_ver_info(void)
9494
{
9595
print_banner();
96-
printf("spynix v4.0.1\n\nFor more info visit: https://github.com/git-user-cpp/spynix\n");
96+
printf("spynix v4.0.2\n\nFor more info visit: https://github.com/git-user-cpp/spynix\n");
9797
}

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ int main(int argc, char **argv)
5656
}
5757
else if(strcmp(argv[1], "-net") == 0)
5858
{
59-
char host_name[100];
59+
char host_name[30];
6060
printf("Enter a hostname or IP address: ");
6161
fgets(host_name, sizeof(host_name), stdin);
6262
host_name[strcspn(host_name, "\n")] = '\0';

0 commit comments

Comments
 (0)