Fix misplaced semicolon from bug 281414 - r=biesi sr=lumpy

git-svn-id: svn://10.0.0.236/trunk@170527 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bsmedberg%covad.net
2005-03-10 19:06:59 +00:00
parent 1dfbb047dc
commit ce4a7ee8e1

View File

@@ -269,8 +269,8 @@ nsSystemPref::ReadSystemPref(const char *aPrefName)
return NS_ERROR_FAILURE;
nsresult rv;
nsCOMPtr<nsIPrefBranch> prefBranch;
do_GetService(NS_PREFSERVICE_CONTRACTID, &rv);
nsCOMPtr<nsIPrefBranch> prefBranch
(do_GetService(NS_PREFSERVICE_CONTRACTID, &rv));
if (NS_FAILED(rv))
return rv;