diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-04-14 14:41:30 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-04-14 14:41:30 +0000 |
commit | 71ed353ae25e77bfafd6a2a5ec09cf39e3f36f7e (patch) | |
tree | c62ba982ae4b300d867b08ca77ab99b1a0b1bbd7 /util/sconfig/sconfig.y | |
parent | 34ee3cd512188baa93ba5595da2982e39fcc7491 (diff) | |
download | coreboot-71ed353ae25e77bfafd6a2a5ec09cf39e3f36f7e.tar.xz |
sconfig should return success when it's successful
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5428 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/sconfig/sconfig.y')
-rwxr-xr-x | util/sconfig/sconfig.y | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/sconfig/sconfig.y b/util/sconfig/sconfig.y index 06fd206646..2b6157f89f 100755 --- a/util/sconfig/sconfig.y +++ b/util/sconfig/sconfig.y @@ -497,4 +497,5 @@ int main(int argc, char** argv) { walk_device_tree(staticc, &root, pass1, NULL); fclose(staticc); + return 0; } |