aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1997-09-18 18:48:32 +0000
committerBruce Momjian <bruce@momjian.us>1997-09-18 18:48:32 +0000
commit0f928c2d21d0388f5e18872c911fa4da2f348780 (patch)
tree63c48eeee647651018ca3d1c8649b516ac043bce /src
parentac9e73ee8a0fa8f8242dcbe5c576efeb2e745932 (diff)
downloadpostgresql-0f928c2d21d0388f5e18872c911fa4da2f348780.tar.gz
postgresql-0f928c2d21d0388f5e18872c911fa4da2f348780.zip
UPdate memset macro.
Diffstat (limited to 'src')
-rw-r--r--src/include/c.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/c.h b/src/include/c.h
index 8f0fae3b6d5..8314f566a2c 100644
--- a/src/include/c.h
+++ b/src/include/c.h
@@ -7,7 +7,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $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 $
*
*-------------------------------------------------------------------------
*/
@@ -711,11 +711,11 @@ typedef struct Exception
*/ \
(len) <= 64) \
{ \
- int32 *i = (int32 *)(start); \
- int32 *stop = (int32 *)((char *)(start) + (len)); \
+ int32 *_i = (int32 *)(start); \
+ int32 *_stop = (int32 *)((char *)(start) + (len)); \
\
- while (i < stop) \
- *i++ = 0; \
+ while (_i < _stop) \
+ *_i++ = 0; \
} \
else \
memset((start), (val), (len)); \