Replace short with int
This commit is contained in:
parent
5f7cd56600
commit
5035afe94f
2 changed files with 9 additions and 9 deletions
6
herbe.c
6
herbe.c
|
@ -55,9 +55,9 @@ int main(int argc, char *argv[])
|
|||
|
||||
XftFont *font = XftFontOpenName(display, screen, font_pattern);
|
||||
|
||||
unsigned short x = pos_x;
|
||||
unsigned short y = pos_y;
|
||||
unsigned short height = font->ascent - font->descent + padding * 2;
|
||||
unsigned int x = pos_x;
|
||||
unsigned int y = pos_y;
|
||||
unsigned int height = font->ascent - font->descent + padding * 2;
|
||||
|
||||
switch (corner)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue