[project @ 2004-08-26 22:59:02 by joty]

die() doesn't need extra ().

svn path=/import/netsurf/; revision=1252
This commit is contained in:
John Tytgat 2004-08-26 22:59:02 +00:00
parent f34a485dc6
commit 6b46a8d916

View File

@ -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");
}