Browse Source

Merge commit '73429d7' into bfgminer

Luke Dashjr 12 years ago
parent
commit
350a5c2782
1 changed files with 3 additions and 1 deletions
  1. 3 1
      miner.c

+ 3 - 1
miner.c

@@ -6152,7 +6152,7 @@ refresh:
 				if (drv->identify_device && drv->identify_device(cgpu))
 					msg = "Identify command sent\n";
 				else
-					msg = "Error: Identify not supported\n";
+					goto key_default;
 				goto refresh;
 			case KEY_DOWN:
 				if (selected_device >= total_devices - 1)
@@ -6190,6 +6190,8 @@ refresh:
 			case '\n':
 				goto out;
 			default:
+				;
+key_default:
 				if (drv->proc_tui_handle_choice && likely(drv_ready(cgpu)))
 				{
 					msg = drv->proc_tui_handle_choice(cgpu, input);