swc

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.nihaljere.xyz/swc
Log | Files | Refs | README | LICENSE

commit e4bdc341504bcb1df794401a07cbc7077a79c4bf
parent f20698722c6b533fdeed07972146adc4f3e80e9d
Author: Michael Forney <mforney@mforney.org>
Date:   Wed, 22 Jan 2014 03:19:36 -0800

drm: Use WARNING

Diffstat:
Mlibswc/drm.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libswc/drm.c b/libswc/drm.c @@ -402,13 +402,13 @@ bool swc_drm_create_screens(struct wl_list * screens) if (!find_available_crtc(resources, connector, taken_crtcs, &crtc_index)) { - printf("couldn't find crtc for connector %u\n", index); + WARNING("Could not find CRTC for connector %u\n", index); continue; } if (!find_available_id(&id)) { - printf("no more available output IDs\n"); + WARNING("No more available output IDs\n"); break; }