Skip to content

Commit

Permalink
- Fix printimpl.c (inverted a 1 and a 0 in previous commit)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjoelund committed Oct 12, 2010
1 parent 71c0798 commit 2db395b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Compiler/runtime/Makefile.in
Expand Up @@ -52,6 +52,7 @@ omc_communication_impl.o: omc_communication.h
corbaimpl.o: omc_communication.h
dynload.o: systemimpl.h ../Absyn.h ../Values.h dynload_try.h
systemimpl.o : config.unix.h
Print_rml.o : printimpl.c

clean:
$(RM) -rf *.a *.o omc_communication.cc omc_communication.h omc_communication-*
Expand Down
4 changes: 2 additions & 2 deletions Compiler/runtime/printimpl.c
Expand Up @@ -164,10 +164,10 @@ int PrintImpl__printErrorBuf(const char* str)
}

if (print_error_buf_impl(str) != 0) {
return 0;
return 1;
}

return 1;
return 0;
}

void PrintImpl__clearErrorBuf(void)
Expand Down

0 comments on commit 2db395b

Please sign in to comment.