[pulseaudio-discuss] [PATCH] device-restore: Fix empty argument list declaration.

Tanu Kaskinen tanuk at iki.fi
Sun Dec 16 00:54:31 PST 2012


On Tue, 2012-04-10 at 14:36 +0300, Tanu Kaskinen wrote:
> ---
>  src/modules/module-device-restore.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/src/modules/module-device-restore.c b/src/modules/module-device-restore.c
> index de98035..f37ad1b 100644
> --- 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 struct entry* entry_new() {
> +static struct entry* entry_new(void) {
>      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);
> -    e = entry_new(FALSE);
> +    e = entry_new();
>  
>      if (pa_tagstruct_getu8(t, &e->version) < 0 ||
>          e->version > ENTRY_VERSION ||

This is now applied.

-- 
Tanu




More information about the pulseaudio-discuss mailing list