Skip to content

Commit 499a14c

Browse files
authored
Merge pull request #22 from git-user-cpp/development
Optimized RAM using
2 parents d67233c + 2b21ba5 commit 499a14c

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

Diff for: spynix

20.5 KB
Binary file not shown.

Diff for: src/hlp/hlp_info.c

+1-1
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
}

Diff for: src/main.c

+1-1
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)