X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fsyntax-file.c;h=9b5fd0430b56879fd92e1996c732cbe16e0c2068;hb=b7cbf7cfbfa9de06ac8017c88b602477654c79a9;hp=0771ade3a9e92dccc0c3063a7c14d13014c010e3;hpb=b5c82cc9aabe7e641011130240ae1b2e84348e23;p=pspp-builds.git diff --git a/src/language/syntax-file.c b/src/language/syntax-file.c index 0771ade3..9b5fd043 100644 --- a/src/language/syntax-file.c +++ b/src/language/syntax-file.c @@ -29,6 +29,7 @@ #include #include #include +#include #include #include #include @@ -62,14 +63,16 @@ struct syntax_file_source static const char * name (const struct getl_interface *s) { - const struct syntax_file_source *sfs = (const struct syntax_file_source *) s; + const struct syntax_file_source *sfs = UP_CAST (s, struct syntax_file_source, + parent); return sfs->fn; } static int line_number (const struct getl_interface *s) { - const struct syntax_file_source *sfs = (const struct syntax_file_source *) s; + const struct syntax_file_source *sfs = UP_CAST (s, struct syntax_file_source, + parent); return sfs->ln; } @@ -80,7 +83,8 @@ static bool read_syntax_file (struct getl_interface *s, struct string *line) { - struct syntax_file_source *sfs = (struct syntax_file_source *) s; + struct syntax_file_source *sfs = UP_CAST (s, struct syntax_file_source, + parent); /* Open file, if not yet opened. */ if (sfs->syntax_file == NULL) @@ -121,7 +125,8 @@ read_syntax_file (struct getl_interface *s, static void syntax_close (struct getl_interface *s) { - struct syntax_file_source *sfs = (struct syntax_file_source *) s; + struct syntax_file_source *sfs = UP_CAST (s, struct syntax_file_source, + parent); if (sfs->syntax_file && EOF == fn_close (sfs->fn, sfs->syntax_file)) msg (MW, _("Closing `%s': %s."), sfs->fn, strerror (errno)); @@ -151,6 +156,6 @@ create_syntax_file_source (const char *fn) ss->parent.name = name ; ss->parent.location = line_number; - return (struct getl_interface *) ss; + return &ss->parent; }