diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/mozilla-embed-single.cpp | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2005-12-15 Jean-François Rameau <jframeau@cvs.gnome.org> + + * embed/mozilla/mozilla-embed-single: (impl_import): + + Fix a compile warning. + 2005-12-14 Christian Persch <chpe@cvs.gnome.org> * plugins/desktop-file/Makefile.am: diff --git a/embed/mozilla/mozilla-embed-single.cpp b/embed/mozilla/mozilla-embed-single.cpp index 94359c8a3..447f3b4ff 100644 --- a/embed/mozilla/mozilla-embed-single.cpp +++ b/embed/mozilla/mozilla-embed-single.cpp @@ -1134,7 +1134,7 @@ impl_import (EphyCertificateManager *manager, nsresult rv; nsCOMPtr<nsIX509CertDB> certDB; certDB = do_GetService (NS_X509CERTDB_CONTRACTID); - if (!certDB) return NULL; + if (!certDB) return FALSE; nsCOMPtr<nsILocalFile> localFile; localFile = do_CreateInstance (NS_LOCAL_FILE_CONTRACTID); |