From 93deb844996120b6326345d6d87e803142dd1968 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 23 Oct 2013 22:08:59 +0200 Subject: input_stream: rename struct to InputStream --- test/run_input.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/run_input.cxx') diff --git a/test/run_input.cxx b/test/run_input.cxx index 042c7ddd0..3817ed418 100644 --- a/test/run_input.cxx +++ b/test/run_input.cxx @@ -49,7 +49,7 @@ my_log_func(const gchar *log_domain, gcc_unused GLogLevelFlags log_level, } static int -dump_input_stream(struct input_stream *is) +dump_input_stream(InputStream *is) { Error error; char buffer[4096]; @@ -110,7 +110,7 @@ dump_input_stream(struct input_stream *is) int main(int argc, char **argv) { Error error; - struct input_stream *is; + InputStream *is; int ret; if (argc != 2) { @@ -147,7 +147,7 @@ int main(int argc, char **argv) Mutex mutex; Cond cond; - is = input_stream::Open(argv[1], mutex, cond, error); + is = InputStream::Open(argv[1], mutex, cond, error); if (is != NULL) { ret = dump_input_stream(is); is->Close(); -- cgit v1.2.3