1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-02-10 15:44:41 -05:00

Fix printing Warning about XID.

This commit is contained in:
QC 2015-01-26 22:43:57 +01:00
parent 9532ad6daa
commit 072baa9c02

View file

@ -190,7 +190,7 @@ static void focus_window_i3 ( const char *socket_path, Window id )
// Formulate command
snprintf ( command, 128, "[id=\"%d\"] focus", id );
snprintf ( command, 128, "[id=\"%ul\"] focus", id );
// Prepare header.
memcpy ( head.magic, I3_IPC_MAGIC, 6 );
head.size = strlen ( command );