mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-03 04:23:42 -05:00
Fix wrong format specifier.
This commit is contained in:
parent
e70ebf899c
commit
546b7df680
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ static void focus_window_i3( const char *socket_path, int id )
|
|||
struct sockaddr_un remote;
|
||||
|
||||
if ( strlen( socket_path ) > UNIX_PATH_MAX ) {
|
||||
fprintf( stderr, "Socket path is to long. %ld > %d\n", strlen( socket_path ), UNIX_PATH_MAX );
|
||||
fprintf( stderr, "Socket path is to long. %zd > %d\n", strlen( socket_path ), UNIX_PATH_MAX );
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue