8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac9e73e commit 0f928c2Copy full SHA for 0f928c2
src/include/c.h
@@ -7,7 +7,7 @@
7
*
8
* Copyright (c) 1994, Regents of the University of California
9
10
- * $Id: c.h,v 1.21 1997/09/18 17:06:21 momjian Exp $
+ * $Id: c.h,v 1.22 1997/09/18 18:48:32 momjian Exp $
11
12
*-------------------------------------------------------------------------
13
*/
@@ -711,11 +711,11 @@ typedef struct Exception
711
*/ \
712
(len) <= 64) \
713
{ \
714
- int32 *i = (int32 *)(start); \
715
- int32 *stop = (int32 *)((char *)(start) + (len)); \
+ int32 *_i = (int32 *)(start); \
+ int32 *_stop = (int32 *)((char *)(start) + (len)); \
716
\
717
- while (i < stop) \
718
- *i++ = 0; \
+ while (_i < _stop) \
+ *_i++ = 0; \
719
} \
720
else \
721
memset((start), (val), (len)); \
0 commit comments