]> granicus.if.org Git - postgresql/commitdiff
Fix a number of copy & paste comment errors in common/int.h.
authorAndres Freund <andres@anarazel.de>
Thu, 14 Dec 2017 20:33:48 +0000 (12:33 -0800)
committerAndres Freund <andres@anarazel.de>
Thu, 14 Dec 2017 20:33:48 +0000 (12:33 -0800)
Author: Christoph Berg
Discussion: https://postgr.es/m/20171214082808.GA5775@msg.df7cb.de

src/include/common/int.h

index e44d42f7da340012f86bfcb92f09bc4c60bda6f3..e6907c699f08947790ca69268b17a118191d3bb7 100644 (file)
@@ -41,7 +41,7 @@ pg_add_s16_overflow(int16 a, int16 b, int16 *result)
 }
 
 /*
- * If a - b overflows, return true, otherwise store the result of a + b into
+ * If a - b overflows, return true, otherwise store the result of a - b into
  * *result. The content of *result is implementation defined in case of
  * overflow.
  */
@@ -61,7 +61,7 @@ pg_sub_s16_overflow(int16 a, int16 b, int16 *result)
 }
 
 /*
- * If a * b overflows, return true, otherwise store the result of a + b into
+ * If a * b overflows, return true, otherwise store the result of a * b into
  * *result. The content of *result is implementation defined in case of
  * overflow.
  */
@@ -101,7 +101,7 @@ pg_add_s32_overflow(int32 a, int32 b, int32 *result)
 }
 
 /*
- * If a - b overflows, return true, otherwise store the result of a + b into
+ * If a - b overflows, return true, otherwise store the result of a - b into
  * *result. The content of *result is implementation defined in case of
  * overflow.
  */
@@ -121,7 +121,7 @@ pg_sub_s32_overflow(int32 a, int32 b, int32 *result)
 }
 
 /*
- * If a * b overflows, return true, otherwise store the result of a + b into
+ * If a * b overflows, return true, otherwise store the result of a * b into
  * *result. The content of *result is implementation defined in case of
  * overflow.
  */
@@ -167,7 +167,7 @@ pg_add_s64_overflow(int64 a, int64 b, int64 *result)
 }
 
 /*
- * If a - b overflows, return true, otherwise store the result of a + b into
+ * If a - b overflows, return true, otherwise store the result of a - b into
  * *result. The content of *result is implementation defined in case of
  * overflow.
  */
@@ -193,7 +193,7 @@ pg_sub_s64_overflow(int64 a, int64 b, int64 *result)
 }
 
 /*
- * If a * b overflows, return true, otherwise store the result of a + b into
+ * If a * b overflows, return true, otherwise store the result of a * b into
  * *result. The content of *result is implementation defined in case of
  * overflow.
  */