diff options
author | 2008-11-09 08:54:50 +0000 | |
---|---|---|
committer | 2008-11-09 08:54:50 +0000 | |
commit | a861e9dfcf066af9d64a16e125466f7546df0851 (patch) | |
tree | 9fa79e0f8f07a038726da6bc9629ecd2421f39af | |
parent | libsbutil: use __func__ rather than __FUNCTION__ (diff) | |
download | sandbox-a861e9dfcf066af9d64a16e125466f7546df0851.tar.gz sandbox-a861e9dfcf066af9d64a16e125466f7546df0851.tar.bz2 sandbox-a861e9dfcf066af9d64a16e125466f7546df0851.zip |
libsbutil: drop log_domain volatile markings
There is no need to mark log_domain volatile as there is no long running
function where we have to worry about reloading of the storage.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r-- | libsbutil/src/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsbutil/src/debug.c b/libsbutil/src/debug.c index 5cc02ea..7c096d6 100644 --- a/libsbutil/src/debug.c +++ b/libsbutil/src/debug.c @@ -36,7 +36,7 @@ volatile static bool debug_enabled = TRUE; volatile static int debug_errno = 0; static char log_domain_default[] = "rcscripts"; -volatile static char *log_domain = log_domain_default; +static char *log_domain = log_domain_default; void rc_log_domain (const char *new_domain) |