1
0
Fork 0
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:
Qball Cow 2014-01-10 19:23:55 +01:00
parent e70ebf899c
commit 546b7df680

View file

@ -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;
}