Skip to content

Commit

Permalink
fixup! MAINT: Warn when too many steps are requested
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-wieser committed May 16, 2017
1 parent e3911ad commit 5d446d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ auto on_go = [](const Go& go) {
if(n > H_max) {
char msg[256];
snprintf(msg, sizeof(msg),
'Not enough memory allocated for %d steps - using %d instead',
"Not enough memory allocated for %d steps - using %d instead",
n, H_max
);
logging::warn(msg);
Expand Down

0 comments on commit 5d446d9

Please sign in to comment.