From: Adam Dickmeiss Date: Mon, 12 Mar 2007 16:16:49 +0000 (+0000) Subject: Use wrbuf_puts rather than wrbuf_printf for GRS-1 display. X-Git-Tag: YAZ.2.1.54~10 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=967a1293ee622053b05995d46d63085f6aa23204 Use wrbuf_puts rather than wrbuf_printf for GRS-1 display. --- diff --git a/src/grs1disp.c b/src/grs1disp.c index a2f32bb..ddf2928 100644 --- a/src/grs1disp.c +++ b/src/grs1disp.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: grs1disp.c,v 1.5 2007-01-03 08:42:15 adam Exp $ + * $Id: grs1disp.c,v 1.6 2007-03-12 16:16:49 adam Exp $ */ /** @@ -66,9 +66,14 @@ static void display_grs1(WRBUF w, Z_GenericRecord *r, int level) } } else if (t->content->which == Z_ElementData_string) - wrbuf_printf(w, "%s\n", t->content->u.string); + { + wrbuf_puts(w, t->content->u.string); + wrbuf_puts(w, "\n"); + } else if (t->content->which == Z_ElementData_numeric) + { wrbuf_printf(w, "%d\n", *t->content->u.numeric); + } else if (t->content->which == Z_ElementData_oid) { int *ip = t->content->u.oid;