mirror of
https://github.com/lbonn/rofi
synced 2024-11-15 08:37:17 +00:00
small arm compiler fix
This commit is contained in:
parent
b0ee6ab8dd
commit
f8b72dfbac
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ static char ** get_mark ( )
|
|||
ssize_t index = 0;
|
||||
|
||||
// Grab results.
|
||||
while ( index < head.size ) {
|
||||
while ( index < (ssize_t)head.size ) {
|
||||
t= recv( s, &result[index], ( head.size-t ), 0 );
|
||||
|
||||
if ( t < 0 ) break;
|
||||
|
|
Loading…
Reference in a new issue