# HG changeset patch # User Olaf Wintermann # Date 1763540418 -3600 # Node ID 6fdcf1cbbec92f9775106e94768620229c8ea1f1 # Parent ddbbceb8c3a5b21725ba241ceebfbb759e2e09d5 fix wrong fprintf arg diff -r ddbbceb8c3a5 -r 6fdcf1cbbec9 ui/common/context.c --- a/ui/common/context.c Tue Nov 18 18:54:53 2025 +0100 +++ b/ui/common/context.c Wed Nov 19 09:20:18 2025 +0100 @@ -464,7 +464,7 @@ } else { // override var with new value if(var->type != type) { - fprintf(stderr, "Error: var %s type mismatch: %s - %s\n", name, uic_type2str(var->type), type); + fprintf(stderr, "Error: var %s type mismatch: %s - %s\n", name, uic_type2str(var->type), uic_type2str(type)); return; } if(var->bound) {