diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-11-10 05:10:50 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-11-10 05:10:50 +0000 |
commit | baeb8790ac976c12abba26766aba25344d29888d (patch) | |
tree | 9605bb2b47a297b52843837fc17ee596a0beaa94 /src/include/c.h | |
parent | 0f367cf8c8c07eefc8f9957d4c5328f0d26e9720 (diff) | |
download | postgresql-baeb8790ac976c12abba26766aba25344d29888d.tar.gz postgresql-baeb8790ac976c12abba26766aba25344d29888d.zip |
Fix case issues with quotes.
Diffstat (limited to 'src/include/c.h')
-rw-r--r-- | src/include/c.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/c.h b/src/include/c.h index 2aeb743f9a0..a3c85f584cc 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.26 1997/10/30 23:36:56 momjian Exp $ + * $Id: c.h,v 1.27 1997/11/10 05:10:34 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -697,8 +697,8 @@ typedef struct Exception #define INT_ALIGN_MASK (sizeof(int32) - 1) /* This function gets call too often, so we inline it if we can */ -#define MemSet(start, val, len) do \ - { /* are we aligned for int32? */ \ +#define MemSet(start, val, len) do \ + { /* are we aligned for int32? */ \ /* We have to cast the pointer to int \ so we can do the AND */ \ if (((int)(start) & INT_ALIGN_MASK) == 0 && \ @@ -707,7 +707,7 @@ typedef struct Exception /* \ * We got this number by testing this \ * against the stock memset() on \ - * bsd/os 3.0. Larger values were \ + * bsd/os 3.0. Larger values were \ * slower. \ */ \ (len) <= 64) \ |