summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/hal-common.c4
-rw-r--r--src/hal-common.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/hal-common.c b/src/hal-common.c
index 6b36d6f..0e731b6 100644
--- a/src/hal-common.c
+++ b/src/hal-common.c
@@ -17,7 +17,7 @@
|
| The following changes were done:
|
-| - libhal becomes optional (see #if HAVE_LIBHAL sections)
+| - libhal becomes optional (see #ifdef HAVE_LIBHAL sections)
| - provide some dummy libhal functions to make libhal-independence
| of ipod-device.c easier.
|
@@ -58,7 +58,7 @@
#include "hal-common.h"
-#if HAVE_LIBHAL
+#ifdef HAVE_LIBHAL
#include <dbus/dbus.h>
#include <dbus/dbus-glib.h>
diff --git a/src/hal-common.h b/src/hal-common.h
index db525fa..cd78cc4 100644
--- a/src/hal-common.h
+++ b/src/hal-common.h
@@ -62,7 +62,7 @@
#include <glib.h>
#include <glib-object.h>
-#if HAVE_LIBHAL
+#ifdef HAVE_LIBHAL
#include <libhal.h>
#include <dbus/dbus.h>