summaryrefslogtreecommitdiffstats
path: root/libutil
diff options
context:
space:
mode:
authorGuy Helmer <ghelmer@FreeBSD.org>2012-01-26 20:33:08 +0000
committerGuy Helmer <ghelmer@FreeBSD.org>2012-01-26 20:33:08 +0000
commit8a770c07c5bd31878a5a6a983aabc49fb1b7a3c9 (patch)
tree0bc126b78b0090b4d6790baabeebe7969a5173d0 /libutil
parent49d0a00f838f7ec6e5ea918878a87a152dc52d71 (diff)
downloadpw-darwin-8a770c07c5bd31878a5a6a983aabc49fb1b7a3c9.tar.gz
pw-darwin-8a770c07c5bd31878a5a6a983aabc49fb1b7a3c9.tar.zst
pw-darwin-8a770c07c5bd31878a5a6a983aabc49fb1b7a3c9.zip
Restore the parenthesis that are necessary around the constant values.
Requested by bde.
Diffstat (limited to 'libutil')
-rw-r--r--libutil/libutil.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/libutil/libutil.h b/libutil/libutil.h
index b6bdbe0..bd04eed 100644
--- a/libutil/libutil.h
+++ b/libutil/libutil.h
@@ -233,12 +233,12 @@ __END_DECLS
/* Return values from uu_lock(). */
#define UU_LOCK_INUSE 1
#define UU_LOCK_OK 0
-#define UU_LOCK_OPEN_ERR -1
-#define UU_LOCK_READ_ERR -2
-#define UU_LOCK_CREAT_ERR -3
-#define UU_LOCK_WRITE_ERR -4
-#define UU_LOCK_LINK_ERR -5
-#define UU_LOCK_TRY_ERR -6
-#define UU_LOCK_OWNER_ERR -7
+#define UU_LOCK_OPEN_ERR (-1)
+#define UU_LOCK_READ_ERR (-2)
+#define UU_LOCK_CREAT_ERR (-3)
+#define UU_LOCK_WRITE_ERR (-4)
+#define UU_LOCK_LINK_ERR (-5)
+#define UU_LOCK_TRY_ERR (-6)
+#define UU_LOCK_OWNER_ERR (-7)
#endif /* !_LIBUTIL_H_ */