Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
lnsoso committed Jun 22, 2010
1 parent 64c4b40 commit 2cc2c54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.c
Original file line number Diff line number Diff line change
Expand Up @@ -318,9 +318,9 @@ int main P2(int, argc, char **, argv)
exit(-1);
} else {
init_simul_efun(SIMUL_EFUN);
debug_message("init_simul_efun load finish.\n");
debug_message("%s load finish.\n", SIMUL_EFUN);
init_master();
debug_message("master load finish.\n");
debug_message("%s load finish.\n", MASTER_FILE);
}

pop_context(&econ);
Expand Down
1 change: 1 addition & 0 deletions simulate.c
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,7 @@ object_t *int_load_object P1(char *, lname)
(void) strcat(real_name, ".c");

if (stat(real_name, &c_st) == -1 || S_ISDIR(c_st.st_mode)) {
debug_message('stat = -1, real_name : %s, name%s', real_name, name);
save_command_giver(command_giver);
ob = load_virtual_object(name, 0);
restore_command_giver();
Expand Down

0 comments on commit 2cc2c54

Please sign in to comment.