Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ui hostname #11

Merged
merged 3 commits into from
Apr 30, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
error fixes
  • Loading branch information
thebsdbox committed Apr 30, 2018
commit b576535e9c14882169339d5ee74a9b3f1c51c1b2
4 changes: 2 additions & 2 deletions mem.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ int allocateMemory() {
// if c is allocated then populate the memory
if(urchinMemory)
{
printf("Operating System allowed allocation of memory\n");
logInfo("Operating System allowed allocation of memory\n");
memset(urchinMemory, 1, sizeof(char) * urchinMemorySize);
return 0;
}
else
{
printf("Operatings system denied memory allocation\n");
logError("Operatings system denied memory allocation\n");
return 1;
}
}
Expand Down