[Openmp-commits] [openmp] r288368 - fixed type in Windows-specific code

Andrey Churbanov via Openmp-commits openmp-commits at lists.llvm.org
Thu Dec 1 08:08:52 PST 2016


Author: achurbanov
Date: Thu Dec  1 10:08:52 2016
New Revision: 288368

URL: http://llvm.org/viewvc/llvm-project?rev=288368&view=rev
Log:
fixed type in Windows-specific code

Modified:
    openmp/trunk/runtime/src/kmp_i18n.c

Modified: openmp/trunk/runtime/src/kmp_i18n.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_i18n.c?rev=288368&r1=288367&r2=288368&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_i18n.c (original)
+++ openmp/trunk/runtime/src/kmp_i18n.c Thu Dec  1 10:08:52 2016
@@ -416,7 +416,7 @@ __kmp_i18n_do_catopen(
 
           Issue a hint in this case to let cause of trouble more understandable.
         */
-        __kmp_msg_t err_code = KMP_SYSERRCODE(error);
+        kmp_msg_t err_code = KMP_SYSERRCODE(error);
         __kmp_msg(
             kmp_ms_warning,
             KMP_MSG( CantOpenMessageCatalog, path.str ),




More information about the Openmp-commits mailing list