summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederic Devernay <devernay@src.gnome.org>1998-12-22 13:07:58 +0000
committerFrederic Devernay <devernay@src.gnome.org>1998-12-22 13:07:58 +0000
commit3cd10863d28d2f2685472f19121068917684a399 (patch)
treead1fe2876debe0df8747f68d7e79312333998c48
parent1038def13837cf21244571d4bd4e3330f4dbdb27 (diff)
downloadyelp-3cd10863d28d2f2685472f19121068917684a399.tar.gz
-rw-r--r--src/info2html/html.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/info2html/html.c b/src/info2html/html.c
index 88d36933..1deec6be 100644
--- a/src/info2html/html.c
+++ b/src/info2html/html.c
@@ -51,7 +51,7 @@ char *form_info_tag_href( char *nodefile, char *nodename )
else
filename = nodefile;
- snprintf(tmp,sizeof(tmp),"HREF=\"info:%s#%s\"", filename, escaped_nodename );
+ g_snprintf(tmp,sizeof(tmp),"HREF=\"info:%s#%s\"", filename, escaped_nodename );
if (escaped_nodename)
g_free(escaped_nodename);
return g_strdup(tmp);
@@ -915,4 +915,3 @@ void write_html_horiz_rule( FILE *f )
{
fprintf(f, "<HR>\n");
}
-