Restore the parenthesis that are necessary around the constant values.

Requested by bde.
This commit is contained in:
Guy Helmer 2012-01-26 20:33:08 +00:00
parent 0fe48d670f
commit edd38b5148
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=230599

View File

@ -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_ */