Fix wrong format specifier.

This commit is contained in:
Qball Cow 2014-01-10 19:23:55 +01:00
parent e70ebf899c
commit 546b7df680
1 changed files with 1 additions and 1 deletions

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