summaryrefslogtreecommitdiffstats
path: root/src/pulsecore/tokenizer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pulsecore/tokenizer.c')
-rw-r--r--src/pulsecore/tokenizer.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/pulsecore/tokenizer.c b/src/pulsecore/tokenizer.c
index ed54a86e..d1e0836b 100644
--- a/src/pulsecore/tokenizer.c
+++ b/src/pulsecore/tokenizer.c
@@ -1,5 +1,3 @@
-/* $Id$ */
-
/***
This file is part of PulseAudio.
@@ -29,9 +27,9 @@
#include <stdlib.h>
#include <pulse/xmalloc.h>
+#include <pulse/gccmacro.h>
#include <pulsecore/dynarray.h>
-#include <pulsecore/gccmacro.h>
#include <pulsecore/macro.h>
#include "tokenizer.h"
@@ -44,7 +42,7 @@ static void parse(pa_dynarray*a, const char *s, unsigned args) {
int infty = 0;
const char delimiter[] = " \t\n\r";
const char *p;
-
+
pa_assert(a);
pa_assert(s);
@@ -77,7 +75,7 @@ pa_tokenizer* pa_tokenizer_new(const char *s, unsigned args) {
void pa_tokenizer_free(pa_tokenizer *t) {
pa_dynarray *a = (pa_dynarray*) t;
-
+
pa_assert(a);
pa_dynarray_free(a, token_free, NULL);
}