summaryrefslogtreecommitdiffstats
path: root/src/hci/commands
diff options
context:
space:
mode:
authorMichael Brown2007-03-20 19:55:00 +0100
committerMichael Brown2007-03-20 19:55:00 +0100
commit160e66dbb91359346740ae782da965ec35aef7bb (patch)
treede5ed8f9007b306e903a6c7463dbd15be54548aa /src/hci/commands
parentSupport 32-bit (linear) NBI images. We don't yet provide a bootp data (diff)
downloadipxe-160e66dbb91359346740ae782da965ec35aef7bb.tar.gz
ipxe-160e66dbb91359346740ae782da965ec35aef7bb.tar.xz
ipxe-160e66dbb91359346740ae782da965ec35aef7bb.zip
Typo
Diffstat (limited to 'src/hci/commands')
-rw-r--r--src/hci/commands/image_cmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hci/commands/image_cmd.c b/src/hci/commands/image_cmd.c
index 98de50e2..e1e22e3f 100644
--- a/src/hci/commands/image_cmd.c
+++ b/src/hci/commands/image_cmd.c
@@ -156,7 +156,7 @@ static int kernel_exec ( int argc, char **argv ) {
struct image *image;
int rc;
- if ( ( rc = imgfetch_core_exec ( argc, argv, 1, &image ) != 0 ) )
+ if ( ( rc = imgfetch_core_exec ( argc, argv, 1, &image ) ) != 0 )
return 1;
/* Load image */
@@ -180,7 +180,7 @@ static int initrd_exec ( int argc, char **argv ) {
struct image *image;
int rc;
- if ( ( rc = imgfetch_core_exec ( argc, argv, 0, &image ) != 0 ) )
+ if ( ( rc = imgfetch_core_exec ( argc, argv, 0, &image ) ) != 0 )
return 1;
/* Mark image as an intird */