diff options
author | Lennart Poettering <lennart@poettering.net> | 2009-06-17 03:18:14 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2009-06-17 03:18:14 +0200 |
commit | e9c70ac41bb86b7778b67284d8a0cae51f6a9ed3 (patch) | |
tree | 89e2ac989ec08849cf7b8f33ccdc8448d2507365 /src | |
parent | 1ec33f37d9bc9d3328862d2cd9e155d807888a14 (diff) |
pdispatch: fix s/recieve/receive/ typos
Diffstat (limited to 'src')
-rw-r--r-- | src/pulsecore/pdispatch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pulsecore/pdispatch.c b/src/pulsecore/pdispatch.c index d00106b4..4388831a 100644 --- a/src/pulsecore/pdispatch.c +++ b/src/pulsecore/pdispatch.c @@ -304,7 +304,7 @@ int pa_pdispatch_run(pa_pdispatch *pd, pa_packet*packet, const pa_creds *creds, if (command >= PA_COMMAND_MAX || !(p = command_names[command])) pa_snprintf((char*) (p = t), sizeof(t), "%u", command); - pa_log("[%p] Recieved opcode <%s>", pd, p); + pa_log("[%p] Received opcode <%s>", pd, p); } #endif @@ -325,7 +325,7 @@ int pa_pdispatch_run(pa_pdispatch *pd, pa_packet*packet, const pa_creds *creds, (*c)(pd, command, tag, ts, userdata); } else { - pa_log("Recieved unsupported command %u", command); + pa_log("Received unsupported command %u", command); goto finish; } |