aboutsummaryrefslogtreecommitdiff
path: root/lib/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
commitedd38b51484ab4fef050e875edb7ad587463df8a (patch)
tree1df4d7b24155721e628103d964b84a6b217fbf34 /lib/libutil
parent0fe48d670f84418e73dc718934989cd18ac61199 (diff)
downloadsrc-edd38b51484ab4fef050e875edb7ad587463df8a.tar.gz
src-edd38b51484ab4fef050e875edb7ad587463df8a.zip
Restore the parenthesis that are necessary around the constant values.
Requested by bde.
Notes
Notes: svn path=/head/; revision=230599
Diffstat (limited to 'lib/libutil')
-rw-r--r--lib/libutil/libutil.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/libutil/libutil.h b/lib/libutil/libutil.h
index b6bdbe0e866e..bd04eedcd0fc 100644
--- a/lib/libutil/libutil.h
+++ b/lib/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_ */