Skip to content

Commit

Permalink
Update main.c
Browse files Browse the repository at this point in the history
  • Loading branch information
israpps committed Feb 28, 2024
1 parent feff9cb commit 1afd5ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2441,7 +2441,8 @@ static void Execute(char *pathin)
int ret, id;
id = SifLoadStartModule(fullpath, 0, NULL, &ret);
sprintf(mainMsg, "%s: id:%d, ret:%d (%s)",
(p!=NULL) ? p : "MODULE", id, ret
(p!=NULL) ? p : "MODULE",
id, ret,
(id>0 && ret!=0) ? LNG(OK) : LNG(Failed));
DPRINTF("%s\n", mainMsg);
}
Expand Down

0 comments on commit 1afd5ae

Please sign in to comment.