Browse Source

Bugfix: Expand deprecated work->subid field to int width, needed by klondike driver for tracking work

Luke Dashjr 12 years ago
parent
commit
c7e6d1b929
1 changed files with 1 additions and 1 deletions
  1. 1 1
      miner.h

+ 1 - 1
miner.h

@@ -1370,7 +1370,7 @@ struct work {
 
 
 	// Allow devices to identify work if multiple sub-devices
 	// Allow devices to identify work if multiple sub-devices
 	// DEPRECATED: New code should be using multiple processors instead
 	// DEPRECATED: New code should be using multiple processors instead
-	unsigned char	subid;
+	int		subid;
 	
 	
 	// Allow devices to timestamp work for their own purposes
 	// Allow devices to timestamp work for their own purposes
 	struct timeval	tv_stamp;
 	struct timeval	tv_stamp;