summaryrefslogtreecommitdiffstats
path: root/input
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-30 06:30:34 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-30 06:30:34 +0300
commitbde509648f8acd8bcae32b9932b459d710b11b51 (patch)
tree66c9f46554ca76807f154aa6ec7b9f42c8ba2143 /input
parent431bf1f5b647ba61103c6a2573fb9472f0aa6122 (diff)
downloadmpv-bde509648f8acd8bcae32b9932b459d710b11b51.tar.bz2
mpv-bde509648f8acd8bcae32b9932b459d710b11b51.tar.xz
input.c: Remove _st prefix from struct names
Diffstat (limited to 'input')
-rw-r--r--input/input.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/input/input.c b/input/input.c
index c8218c7b00..fcf835e989 100644
--- a/input/input.c
+++ b/input/input.c
@@ -520,17 +520,17 @@ typedef struct mp_input_fd {
int pos,size;
} mp_input_fd_t;
-typedef struct mp_cmd_filter_st mp_cmd_filter_t;
+typedef struct mp_cmd_filter mp_cmd_filter_t;
-struct mp_cmd_filter_st {
+struct mp_cmd_filter {
mp_input_cmd_filter filter;
void* ctx;
mp_cmd_filter_t* next;
};
-typedef struct mp_cmd_bind_section_st mp_cmd_bind_section_t;
+typedef struct mp_cmd_bind_section mp_cmd_bind_section_t;
-struct mp_cmd_bind_section_st {
+struct mp_cmd_bind_section {
mp_cmd_bind_t* cmd_binds;
char* section;
mp_cmd_bind_section_t* next;