libpulse: add new error code PA_ERR_BUSY

This commit is contained in:
Lennart Poettering 2009-09-11 01:20:45 +02:00
parent 12c7460e40
commit 54609675e5
2 changed files with 4 additions and 1 deletions

View file

@ -64,7 +64,9 @@ const char*pa_strerror(int error) {
[PA_ERR_NOEXTENSION] = N_("No such extension"),
[PA_ERR_OBSOLETE] = N_("Obsolete functionality"),
[PA_ERR_NOTIMPLEMENTED] = N_("Missing implementation"),
[PA_ERR_FORKED] = N_("Client forked")
[PA_ERR_FORKED] = N_("Client forked"),
[PA_ERR_IO] = N_("Input/Output error"),
[PA_ERR_BUSY] = N_("Device or resource busy")
};
pa_init_i18n();