X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fsyntax-string-source.c;h=405141cd50a7fd1734f387281b5b344d5a7e74f9;hb=608b1765241e7c6f9bd5e86a8f81cf15edeb413b;hp=94a56f97aacb55ae642b3eac0290cd8531f2b2c3;hpb=9f087e7aa4cdff1d5d46d5e188c0017a9d2d0029;p=pspp diff --git a/src/language/syntax-string-source.c b/src/language/syntax-string-source.c index 94a56f97aa..405141cd50 100644 --- a/src/language/syntax-string-source.c +++ b/src/language/syntax-string-source.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical interface for PSPP. - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007, 2009 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,6 +17,7 @@ #include +#include #include #include #include @@ -60,7 +61,8 @@ location (const struct getl_interface *i UNUSED) static void do_close (struct getl_interface *i ) { - struct syntax_string_source *sss = (struct syntax_string_source *) i; + struct syntax_string_source *sss = UP_CAST (i, struct syntax_string_source, + parent); ds_destroy (&sss->buffer); @@ -73,7 +75,8 @@ static bool read_single_line (struct getl_interface *i, struct string *line) { - struct syntax_string_source *sss = (struct syntax_string_source *) i; + struct syntax_string_source *sss = UP_CAST (i, struct syntax_string_source, + parent); size_t next; @@ -120,7 +123,7 @@ create_syntax_string_source (const char *format, ...) sss->parent.location = location; - return (struct getl_interface *) sss; + return &sss->parent; } /* Return the syntax currently contained in S.