mirror of
https://github.com/davatorium/rofi.git
synced 2025-01-27 15:25:24 -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;
|
struct sockaddr_un remote;
|
||||||
|
|
||||||
if ( strlen( socket_path ) > UNIX_PATH_MAX ) {
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue