Kill spaces on EOL

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1465 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2007-05-29 17:24:48 +00:00
parent e4d63d0d80
commit 1e12e0ee8d
21 changed files with 2721 additions and 2721 deletions

View file

@ -87,7 +87,7 @@ struct userdata {
pa_hashmap *devices;
#if defined(HAVE_ALSA) && defined(HAVE_OSS)
int use_oss;
#endif
#endif
};
struct timerdata {
@ -269,7 +269,7 @@ static dbus_bool_t hal_device_add(struct userdata *u, const char *udi,
case CAP_OSS:
#ifdef HAVE_ALSA
if (u->use_oss)
#endif
#endif
m = hal_device_load_oss(u, udi, error);
break;
#endif
@ -533,9 +533,9 @@ int pa__init(pa_core *c, pa_module*m) {
#endif
#if defined(HAVE_ALSA) && defined(HAVE_OSS)
u->use_oss = 0;
if (n <= 0) {
#endif
#endif
#ifdef HAVE_OSS
n += hal_device_add_all(u, CAP_OSS);
#endif
@ -546,7 +546,7 @@ int pa__init(pa_core *c, pa_module*m) {
if (n > 0)
u->use_oss = 1;
}
#endif
#endif
libhal_ctx_set_user_data(hal_ctx, u);
libhal_ctx_set_device_added(hal_ctx, device_added_cb);