diff options
| author | Patrick Williams <iawillia@us.ibm.com> | 2011-09-12 14:58:16 -0500 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2011-09-13 12:44:49 -0500 |
| commit | f00cbc2321649c74c078784a1fc47da3b10e1a54 (patch) | |
| tree | e4bf96f22176dda426bc678602aef25bc95a3564 /src/sys/init | |
| parent | 89dc4c2dc72a77bc278b388d66681e943fb6d539 (diff) | |
| download | talos-hostboot-f00cbc2321649c74c078784a1fc47da3b10e1a54.tar.gz talos-hostboot-f00cbc2321649c74c078784a1fc47da3b10e1a54.zip | |
Return code cleanups.
Change-Id: I375c2f895f28b73948aa384dda781b31f027719b
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/334
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/sys/init')
| -rw-r--r-- | src/sys/init/init_main.C | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/init/init_main.C b/src/sys/init/init_main.C index ffc552dad..96fea57a8 100644 --- a/src/sys/init/init_main.C +++ b/src/sys/init/init_main.C @@ -50,7 +50,7 @@ void init_main(void* unused) // run initialization service to start up everything else. printk("init_main: Starting Initialization Service...\n"); tidrc = task_exec( "libinitservice.so", NULL ); - if ( (int16_t)tidrc < 0 ) // task_exec returned a -1 + if ( (int16_t)tidrc < 0 ) // task_exec returned an error. { printk( "ERROR: init_main: failed to launch initservice: %d\n", tidrc ); |

