Skip to content

Commit

Permalink
Fix missing var in jsmn_parse debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
bandogora committed Dec 30, 2024
1 parent c2071e2 commit 822093a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/json/jsmn_parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ static int parse_departures(
LOG_DBG("*********************(t: %d)********************\n", t);
}
#ifdef CONFIG_DEBUG
for (int i = 0; i < MAX_DEPARTURES; i++) {
for (int i = 0; i < CONFIG_ROUTE_MAX_DEPARTURES; i++) {
LOG_DBG(
"Uniq display text(s) %d: %s", i,
route_direction->departures[i].display_text
Expand Down

0 comments on commit 822093a

Please sign in to comment.