mirror of
https://github.com/davatorium/rofi.git
synced 2025-01-27 15:25:24 -05:00
Change window id from long unsigned to unsigned.
This commit is contained in:
parent
a4fd907fe8
commit
bd04e90d9e
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ void i3_support_focus_window ( xcb_window_t id )
|
|||
}
|
||||
|
||||
// Formulate command
|
||||
snprintf ( command, upm, "[id=\"%lu\"] focus", id );
|
||||
snprintf ( command, upm, "[id=\"%u\"] focus", id );
|
||||
// Prepare header.
|
||||
memcpy ( head.magic, I3_IPC_MAGIC, 6 );
|
||||
head.size = strlen ( command );
|
||||
|
|
Loading…
Add table
Reference in a new issue