player_control: remove unused enum player_error values

This commit is contained in:
Max Kellermann
2012-08-08 21:44:18 +02:00
parent 16951099d1
commit fa84ed412d
3 changed files with 1 additions and 19 deletions
-15
View File
@@ -253,12 +253,6 @@ pc_get_error_message(struct player_control *pc)
case PLAYER_ERROR_NOERROR:
return NULL;
case PLAYER_ERROR_FILENOTFOUND:
uri = pc_errored_song_uri(pc);
error = g_strdup_printf("file \"%s\" does not exist or is inaccessible", uri);
g_free(uri);
return error;
case PLAYER_ERROR_FILE:
uri = pc_errored_song_uri(pc);
error = g_strdup_printf("problems decoding \"%s\"", uri);
@@ -267,15 +261,6 @@ pc_get_error_message(struct player_control *pc)
case PLAYER_ERROR_AUDIO:
return g_strdup("problems opening audio device");
case PLAYER_ERROR_SYSTEM:
return g_strdup("system error occurred");
case PLAYER_ERROR_UNKTYPE:
uri = pc_errored_song_uri(pc);
error = g_strdup_printf("file type of \"%s\" is unknown", uri);
g_free(uri);
return error;
}
assert(false);