Skip to content

Commit

Permalink
Update shell.c
Browse files Browse the repository at this point in the history
  • Loading branch information
aarikpokras authored Dec 24, 2024
1 parent ded8764 commit f3a77b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/shell.cxlbund/shell.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ int execute(const char *command) {

int move_file(const char* origin, const char* destination) {
char warn[512];
snprintf(warn, 512, "This program is trying to change file %s. Use ^C now if you wish to stop this.", origin);
snprintf(warn, 512, "This program is trying to change file %s."
"Use ^C now if you wish to stop this.", origin);
printf("%s\n", warn);
sleep(1);
char buf[256];
Expand Down

0 comments on commit f3a77b5

Please sign in to comment.