summaryrefslogtreecommitdiff
path: root/saedit
diff options
context:
space:
mode:
authorVasily_Makarov <danilka.pro@gmail.com>2011-06-10 10:09:09 +0400
committerVasily_Makarov <danilka.pro@gmail.com>2011-06-10 10:09:09 +0400
commit313e47124a149c26b0e004b0d249bceeb2a61559 (patch)
tree3f125b55da8fc579f092d76ad08e184432499ebf /saedit
parent1ce7e90f4e738b91362a701af8ea87976a8b4509 (diff)
downloadtools-313e47124a149c26b0e004b0d249bceeb2a61559.tar.gz
tools-313e47124a149c26b0e004b0d249bceeb2a61559.tar.bz2
tools-313e47124a149c26b0e004b0d249bceeb2a61559.tar.xz
tools-313e47124a149c26b0e004b0d249bceeb2a61559.zip
saedit: Fix markup_bold function
Diffstat (limited to 'saedit')
-rw-r--r--saedit/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/saedit/main.c b/saedit/main.c
index a17f9b3..cf31128 100644
--- a/saedit/main.c
+++ b/saedit/main.c
@@ -42,7 +42,7 @@ gboolean on_expose_event(GtkWidget *widget, GdkEventExpose *event, gpointer data
}
gchar *markup_bold(gchar *str) {
- gchar buffer[255];
+ gchar *buffer[255];
g_sprintf(buffer, "<b>%s</b>", str);
return buffer;
}