Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 0f928c2

Browse files
committed
UPdate memset macro.
1 parent ac9e73e commit 0f928c2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/include/c.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* Copyright (c) 1994, Regents of the University of California
99
*
10-
* $Id: c.h,v 1.21 1997/09/18 17:06:21 momjian Exp $
10+
* $Id: c.h,v 1.22 1997/09/18 18:48:32 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -711,11 +711,11 @@ typedef struct Exception
711711
*/ \
712712
(len) <= 64) \
713713
{ \
714-
int32 *i = (int32 *)(start); \
715-
int32 *stop = (int32 *)((char *)(start) + (len)); \
714+
int32 *_i = (int32 *)(start); \
715+
int32 *_stop = (int32 *)((char *)(start) + (len)); \
716716
\
717-
while (i < stop) \
718-
*i++ = 0; \
717+
while (_i < _stop) \
718+
*_i++ = 0; \
719719
} \
720720
else \
721721
memset((start), (val), (len)); \

0 commit comments

Comments
 (0)