Skip to content

Commit

Permalink
libgap: fix name of GAP_EnterDebugMessage_
Browse files Browse the repository at this point in the history
Without this, GAP_ENTER_DEBUG is broken
  • Loading branch information
fingolfin committed Mar 6, 2019
1 parent bf37caf commit 67050de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libgap-api.c
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ void GAP_LeaveStack_(void)
EnterStackCount--;
}

void GAP_EnterDebugMessage(char * message, char * file, int line)
void GAP_EnterDebugMessage_(char * message, char * file, int line)
{
fprintf(stderr, "%s: %d; %s:%d\n", message, EnterStackCount, file,
line);
Expand Down

0 comments on commit 67050de

Please sign in to comment.