diff options
| -rw-r--r-- | src/pool.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ char get_smallest_pool(void) { r = 0; for(p = 0; p < MAX_POOLS; p++) { - if(pools[p].screen_count = POOL_UNUSED) + if(pools[p].screen_count == POOL_UNUSED) continue; /* maybe break here instead */ if(pools[p].screen_count < min) { min = pools[p].screen_count; |
