Procházet zdrojové kódy

Don't print "<NULL>" when we use imgautoselect().

tags/v0.9.3
Michael Brown před 18 roky
rodič
revize
83559c668a
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2
    1
      src/hci/commands/image_cmd.c

+ 2
- 1
src/hci/commands/image_cmd.c Zobrazit soubor

@@ -344,7 +344,8 @@ static int imgexec_exec ( int argc, char **argv ) {
344 344
 	}
345 345
 
346 346
 	if ( ( rc = imgexec ( image ) ) != 0 ) {
347
-		printf ( "Could not execute %s: %s\n", name, strerror ( rc ) );
347
+		printf ( "Could not execute %s: %s\n",
348
+			 image->name, strerror ( rc ) );
348 349
 		return 1;
349 350
 	}
350 351
 

Načítá se…
Zrušit
Uložit