]> xenbits.xensource.com Git - libvirt.git/commitdiff
errcode is typedef by mingw, rename an argument name
authorMarc-André Lureau <marcandre.lureau@gmail.com>
Wed, 25 Jan 2012 20:13:21 +0000 (21:13 +0100)
committerEric Blake <eblake@redhat.com>
Wed, 25 Jan 2012 21:49:24 +0000 (14:49 -0700)
Fixes the following warning:
util/virterror.c:1242:31: warning: declaration of 'errcode' shadows a global declaration [-Wshadow]

src/util/virterror.c

index ff44a57db544f534947ed2c5f0ca7750d7d1d29c..85eec8dcca8fcdbeac43832c6f80fa70914109d2 100644 (file)
@@ -1228,7 +1228,7 @@ virErrorMsg(virErrorNumber error, const char *info)
  * virReportErrorHelper:
  *
  * @domcode: the virErrorDomain indicating where it's coming from
- * @errcode: the virErrorNumber code for the error
+ * @errorcode: the virErrorNumber code for the error
  * @filename: Source file error is dispatched from
  * @funcname: Function error is dispatched from
  * @linenr: Line number error is dispatched from
@@ -1239,7 +1239,7 @@ virErrorMsg(virErrorNumber error, const char *info)
  * ReportError
  */
 void virReportErrorHelper(int domcode,
-                          int errcode,
+                          int errorcode,
                           const char *filename,
                           const char *funcname,
                           size_t linenr,
@@ -1258,9 +1258,9 @@ void virReportErrorHelper(int domcode,
         errorMessage[0] = '\0';
     }
 
-    virerr = virErrorMsg(errcode, (errorMessage[0] ? errorMessage : NULL));
+    virerr = virErrorMsg(errorcode, (errorMessage[0] ? errorMessage : NULL));
     virRaiseErrorFull(filename, funcname, linenr,
-                      domcode, errcode, VIR_ERR_ERROR,
+                      domcode, errorcode, VIR_ERR_ERROR,
                       virerr, errorMessage, NULL,
                       -1, -1, virerr, errorMessage);
     errno = save_errno;