projects
/
platform
/
upstream
/
pulseaudio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
fb293db
)
device-restore: Fix empty argument list declaration.
author
Tanu Kaskinen
<tanu.kaskinen@digia.com>
Tue, 10 Apr 2012 11:36:04 +0000
(14:36 +0300)
committer
Tanu Kaskinen
<tanuk@iki.fi>
Wed, 19 Dec 2012 10:31:50 +0000
(12:31 +0200)
src/modules/module-device-restore.c
patch
|
blob
|
history
diff --git
a/src/modules/module-device-restore.c
b/src/modules/module-device-restore.c
index
16acfd8
..
2a666ac
100644
(file)
--- a/
src/modules/module-device-restore.c
+++ b/
src/modules/module-device-restore.c
@@
-182,7
+182,7
@@
static pa_bool_t perportentry_write(struct userdata *u, const char *basekeyname,
static void perportentry_free(struct perportentry* e);
#endif
static void perportentry_free(struct perportentry* e);
#endif
-static struct entry* entry_new() {
+static struct entry* entry_new(
void
) {
struct entry *r = pa_xnew0(struct entry, 1);
r->version = ENTRY_VERSION;
return r;
struct entry *r = pa_xnew0(struct entry, 1);
r->version = ENTRY_VERSION;
return r;
@@
-239,7
+239,7
@@
static struct entry* entry_read(struct userdata *u, const char *name) {
goto fail;
t = pa_tagstruct_new(data.data, data.size);
goto fail;
t = pa_tagstruct_new(data.data, data.size);
- e = entry_new(
FALSE
);
+ e = entry_new();
if (pa_tagstruct_getu8(t, &e->version) < 0 ||
e->version > ENTRY_VERSION ||
if (pa_tagstruct_getu8(t, &e->version) < 0 ||
e->version > ENTRY_VERSION ||