]> err.no Git - mapper/commitdiff
Put int_ref inside ()
authorKaj-Michael Lang <milang@onion.tal.org>
Tue, 4 Sep 2007 10:21:47 +0000 (13:21 +0300)
committerKaj-Michael Lang <milang@onion.tal.org>
Tue, 4 Sep 2007 10:21:47 +0000 (13:21 +0300)
src/map.c

index cf070b6b4b2c4e0657862c25cd90d0b9520a2952..02b1e86974a11dd446bddef2f4f5993072979efe 100644 (file)
--- a/src/map.c
+++ b/src/map.c
@@ -983,12 +983,13 @@ if (!s && !mp && !sp) {
        snprintf(buffer, sizeof(buffer), "Unknown location");
 } else {
        /* oh, fun */
-       snprintf(buffer, sizeof(buffer), "On %s%s%s%s%s%s%s%s%s", 
+       snprintf(buffer, sizeof(buffer), "On %s%s%s%s%s%s%s%s%s%s", 
        s ? s->name ? s->name : _("unknown") : "?",
        s ? s->ref ? ", " : "" : "",
        s ? s->ref ? s->ref : "" : "",
-       s ? s->int_ref ? "" : "" : "",
+       s ? s->int_ref ? " (" : "" : "",
        s ? s->int_ref ? s->int_ref : "" : "",
+       s ? s->int_ref ? ") " : "" : "",
        (sp && sp->name) ? " in " : "",
        (sp && sp->name) ? sp->name : "",
        (mp && mp->name) ? " in " : "",