oops
89b7f150
1 file(s) · +2 −2
| 108 | 108 | if(!sel) |
|
| 109 | 109 | return; |
|
| 110 | 110 | for(i = 0; i < ntags; i++) |
|
| 111 | - | sel->tags[i] = arg != NULL; |
|
| 111 | + | sel->tags[i] = arg == NULL; |
|
| 112 | 112 | i = arg ? atoi(arg) : 0; |
|
| 113 | 113 | if(i >= 0 && i < ntags) |
|
| 114 | 114 | sel->tags[i] = True; |
|
| 146 | 146 | int i; |
|
| 147 | 147 | ||
| 148 | 148 | for(i = 0; i < ntags; i++) |
|
| 149 | - | seltag[i] = arg != NULL; |
|
| 149 | + | seltag[i] = arg == NULL; |
|
| 150 | 150 | i = arg ? atoi(arg) : 0; |
|
| 151 | 151 | if(i >= 0 && i < ntags) |
|
| 152 | 152 | seltag[i] = True; |
|