summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorJohn Tytgat <joty@netsurf-browser.org>2004-08-26 22:59:02 +0000
committerJohn Tytgat <joty@netsurf-browser.org>2004-08-26 22:59:02 +0000
commit6b46a8d916c3e3a8fa06e73811918077f1aa78a2 (patch)
tree76c9f835c8a70e1e22d613050a73068377dba79f /desktop
parentf34a485dc6fb38e1c2dd23704891fb81f53a06cb (diff)
downloadnetsurf-6b46a8d916c3e3a8fa06e73811918077f1aa78a2.tar.gz
netsurf-6b46a8d916c3e3a8fa06e73811918077f1aa78a2.tar.bz2
[project @ 2004-08-26 22:59:02 by joty]
die() doesn't need extra (). svn path=/import/netsurf/; revision=1252
Diffstat (limited to 'desktop')
-rw-r--r--desktop/netsurf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/netsurf.c b/desktop/netsurf.c
index dbbe7575c..24583daa8 100644
--- a/desktop/netsurf.c
+++ b/desktop/netsurf.c
@@ -111,5 +111,5 @@ static void lib_init(void)
* "Shift-JIS" is rather popular.
*/
if (xmlAddEncodingAlias(xmlGetCharEncodingName(XML_CHAR_ENCODING_SHIFT_JIS), "X-SJIS") != 0)
- die(("Failed to add encoding alias"));
+ die("Failed to add encoding alias");
}