summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjartan Maraas <set EMAIL_ADDRESS environment variable>2003-05-01 11:31:35 +0000
committerKjartan Maraas <kmaraas@src.gnome.org>2003-05-01 11:31:35 +0000
commit029a18428a4234807413e55810ede59c86e8c1ab (patch)
treed52c3b9b56885530e87dede7c707b037f8c8591d
parent955cf45a1259524100a65db77da5bc2cf8965c06 (diff)
downloadyelp-029a18428a4234807413e55810ede59c86e8c1ab.tar.gz
Fix for bug #73597. Patch from Roderich Schupp. Use NULL in g_string_new()
2003-05-01 Kjartan Maraas <set EMAIL_ADDRESS environment variable> * help-converters/man/gnome-man2html.c: (main): Fix for bug #73597. Patch from Roderich Schupp. * libgnome/gnome-config.c: (check_path): Use NULL in g_string_new() * libgnome/gnome-exec.c: (gnome_execute_shell_fds): Fix a typo in
-rw-r--r--src/man2html/yelp-man2html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/man2html/yelp-man2html.c b/src/man2html/yelp-man2html.c
index ac23402f..77914edb 100644
--- a/src/man2html/yelp-man2html.c
+++ b/src/man2html/yelp-man2html.c
@@ -3793,7 +3793,7 @@ main(int argc, char **argv)
len = strlen(output);
for(i = 0; i < len; i++)
{
- if (isspace((unsigned char)output[i] && (output[i+1] == '/')))
+ if (isspace((unsigned char)output[i]) && output[i+1] == '/')
output[i] = '\0';
}