diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-26 13:00:45 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-26 13:00:45 -0800 |
commit | 4d10bc017ad683ffa3e7e399b9bcb9dcf524d964 (patch) | |
tree | 6a574035a59ded9981471249dccb497cb999adf4 /main.c | |
parent | 6e0ea1ce618d9d28d9512e2afe587bde9ae76fda (diff) | |
download | subsurface-4d10bc017ad683ffa3e7e399b9bcb9dcf524d964.tar.gz |
Split up file reading from 'parse-xml.c' into 'file.c'
We're going to eventually import non-xml files too, so let's begin
splitting the logic up.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -226,7 +226,7 @@ int main(int argc, char **argv) continue; } GError *error = NULL; - parse_xml_file(a, &error); + parse_file(a, &error); if (error != NULL) { |