Browse Source

Fix confusion between local variable and includer variable

Samuel Thibault 8 years ago
parent
commit
5c5ea509bb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/starpu_util.h

+ 1 - 1
include/starpu_util.h

@@ -125,7 +125,7 @@ extern "C"
 
 #  endif
 #  define STARPU_ASSERT_ACCESSIBLE(ptr)	do { \
-	volatile char c STARPU_ATTRIBUTE_UNUSED = *(char*) (ptr); \
+	volatile char __c STARPU_ATTRIBUTE_UNUSED = *(char*) (ptr); \
 } while(0)
 #endif