Browse Source

Bugfix: "REST" flag had too much padding

Luke Dashjr 13 years ago
parent
commit
a39eedb732
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cgminer.c

+ 1 - 1
cgminer.c

@@ -1226,7 +1226,7 @@ static void curses_print_devstatus(int thr_id)
 	else if (cgpu->deven == DEV_DISABLED)
 		wprintw(statuswin, "OFF  ");
 	else if (cgpu->deven == DEV_RECOVER)
-		wprintw(statuswin, "REST  ");
+		wprintw(statuswin, "REST ");
 	else
 		wprintw(statuswin, "%5.1f", cgpu->rolling);
 		adj_width(cgpu->accepted, &awidth);