mirror of
https://github.com/labwc/labwc.git
synced 2025-11-04 13:30:07 -05:00
Remove src/common/log.c
Use wlr_log() instead
This commit is contained in:
parent
20fd8f59a7
commit
82e47ac1f5
20 changed files with 28 additions and 65 deletions
|
|
@ -3,8 +3,7 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "common/log.h"
|
||||
#include <wlr/util/log.h>
|
||||
#include "config/keybind.h"
|
||||
#include "config/rcxml.h"
|
||||
|
||||
|
|
@ -39,7 +38,7 @@ keybind_create(const char *keybind)
|
|||
xkb_keysym_t sym = xkb_keysym_from_name(
|
||||
symname, XKB_KEYSYM_CASE_INSENSITIVE);
|
||||
if (sym == XKB_KEY_NoSymbol) {
|
||||
warn("unknown keybind (%s)", symname);
|
||||
wlr_log(WLR_ERROR, "unknown keybind (%s)", symname);
|
||||
free(k);
|
||||
k = NULL;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue