aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1998-02-12 01:50:01 +0000
committerBruce Momjian <bruce@momjian.us>1998-02-12 01:50:01 +0000
commit1e7fed7fd9b6e55f012ef1e48e1f8bfb53a3102b (patch)
tree3c4e04eec63ce8c34d62990d101ab27cc318c981 /src
parent1e3c5b0ab5408e7b2fbad71c1137414bc7ae1f78 (diff)
downloadpostgresql-1e7fed7fd9b6e55f012ef1e48e1f8bfb53a3102b.tar.gz
postgresql-1e7fed7fd9b6e55f012ef1e48e1f8bfb53a3102b.zip
MemSet cleanup.
Diffstat (limited to 'src')
-rw-r--r--src/include/c.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/c.h b/src/include/c.h
index 9b4db686b61..0da7efdf57d 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.33 1998/02/11 21:45:40 momjian Exp $
+ * $Id: c.h,v 1.34 1998/02/12 01:50:01 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -716,7 +716,7 @@ typedef struct Exception
* BSD/OS 3.0. Larger values were slower.
*/
#define MemSet(start, val, len) do \
- {
+ { \
if (((long)(start) & INT_ALIGN_MASK) == 0 && \
((len) & INT_ALIGN_MASK) == 0 && \
(val) == 0 && \