summaryrefslogtreecommitdiffstats
path: root/src/driver-order.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-02-20 00:47:45 +0100
committerLennart Poettering <lennart@poettering.net>2010-02-20 00:47:45 +0100
commitd22b71af47b44c1c1d84195743c34b589e6ab19c (patch)
treeefb8dc22a6c0f5712b029dcc1a6b8af11d42babd /src/driver-order.c
parenta558bbefae4e0a9f4d2b9aa539b94ae0344f6aed (diff)
src: reindent for 8ch indenting
I am slowly moving all my projects to kernel-inspired 8ch indenting. This will break patches that haven't been merged yet, which I am aware of, but OTOH in times of git's --ignore-space-change shouldn't be too problematic. Yes, I am aware that reindenting like this sucks, but I cannot stand 4ch indenting anymore. Sorry.
Diffstat (limited to 'src/driver-order.c')
-rw-r--r--src/driver-order.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/driver-order.c b/src/driver-order.c
index 263b130..64f464d 100644
--- a/src/driver-order.c
+++ b/src/driver-order.c
@@ -1,3 +1,5 @@
+/*-*- Mode: C; c-basic-offset: 8 -*-*/
+
/***
This file is part of libcanberra.
@@ -29,17 +31,17 @@
const char* const ca_driver_order[] = {
#ifdef HAVE_PULSE
- "pulse",
+ "pulse",
#endif
#ifdef HAVE_ALSA
- "alsa",
+ "alsa",
#endif
#ifdef HAVE_OSS
- "oss",
+ "oss",
#endif
#ifdef HAVE_GSTREAMER
- "gstreamer",
+ "gstreamer",
#endif
- /* ... */
- NULL
+ /* ... */
+ NULL
};