]> granicus.if.org Git - postgresql/blobdiff - src/tutorial/funcs.c
Update copyright for 2006. Update scripts.
[postgresql] / src / tutorial / funcs.c
index 5e8ad6ee7074f6e06153125d43ebf0f8c9aa8212..a988ad431b2d2c8457380d6cdf3688a920cef6e2 100644 (file)
@@ -102,6 +102,6 @@ c_overpaid(HeapTupleHeader t,       /* the current instance of EMP */
 
        salary = DatumGetInt32(GetAttributeByName(t, "salary", &isnull));
        if (isnull)
-               return (false);
+               return false;
        return salary > limit;
 }