From 83ade5b701eaff9b777649ffad8cb2562cd643ce Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Wed, 4 Jun 2008 12:44:45 +0000 Subject: Style. --- src/librc/rc.h.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/librc/rc.h.in') diff --git a/src/librc/rc.h.in b/src/librc/rc.h.in index ede3fc61..7c94c3eb 100644 --- a/src/librc/rc.h.in +++ b/src/librc/rc.h.in @@ -256,13 +256,13 @@ const char *rc_sys(void); * These options can change the services found by the rc_get_depinfo and * rc_get_depends functions. */ /*! Trace provided services */ -#define RC_DEP_TRACE 0x01 +#define RC_DEP_TRACE (1<<0) /*! Only use services added to runlevels */ -#define RC_DEP_STRICT 0x02 +#define RC_DEP_STRICT (1<<1) /*! Runlevel is starting */ -#define RC_DEP_START 0x04 +#define RC_DEP_START (1<<2) /*! Runlevel is stopping */ -#define RC_DEP_STOP 0x08 +#define RC_DEP_STOP (1<<3) /*! @name Dependencies * We analyse each init script and cache the resultant dependency tree. -- cgit v1.2.3