I hate you xlib. Please die in a fire.
This commit is contained in:
parent
2c5332872f
commit
4fe80aa14a
|
@ -358,7 +358,7 @@ static unsigned char at2lnx[NUM_KEYCODES] =
|
||||||
/** Create a private structure for use within this file. */
|
/** Create a private structure for use within this file. */
|
||||||
pointer kbdLinuxCreatePrivate(DeviceIntPtr pKeyboard)
|
pointer kbdLinuxCreatePrivate(DeviceIntPtr pKeyboard)
|
||||||
{
|
{
|
||||||
myPrivate *priv = xcalloc(1, sizeof(*priv));
|
myPrivate *priv = calloc(1, sizeof(*priv));
|
||||||
priv->fd = -1;
|
priv->fd = -1;
|
||||||
priv->pKeyboard = pKeyboard;
|
priv->pKeyboard = pKeyboard;
|
||||||
return priv;
|
return priv;
|
||||||
|
@ -367,7 +367,7 @@ pointer kbdLinuxCreatePrivate(DeviceIntPtr pKeyboard)
|
||||||
/** Destroy a private structure. */
|
/** Destroy a private structure. */
|
||||||
void kbdLinuxDestroyPrivate(pointer priv)
|
void kbdLinuxDestroyPrivate(pointer priv)
|
||||||
{
|
{
|
||||||
if (priv) xfree(priv);
|
if (priv) free(priv);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Ring the bell.
|
/** Ring the bell.
|
||||||
|
|
Loading…
Reference in New Issue