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

Fix frintf: #27

Open
wants to merge 12 commits into
base: inetmanet-2.2
Choose a base branch
from
Open

Fix frintf: #27

wants to merge 12 commits into from

Conversation

gcorral
Copy link

@gcorral gcorral commented Jun 23, 2016

fprintf(routingLogFile, "%s %"LL"d %s %d %s %s %s %s\n",

to

fprintf(routingLogFile, "%s %LLd %s %d %s %s %s %s\n",

@aarizaq
Copy link
Owner

aarizaq commented Jun 24, 2016

LL is a macro "I64"
fprintf(routingLogFile, "%s %"LL"d %s %d %s %s %s %s\n",
is in reallity
fprintf(routingLogFile, "%s %" "I64" "d %s %d %s %s %s %s\n",
or

fprintf(routingLogFile, "%s %I64d %s %d %s %s %s %s\n",

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants