diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-10-13 18:50:03 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-10-13 18:50:03 +0100 |
commit | 2987a6d5662fb3337f1400a51d016e1c5e21c063 (patch) | |
tree | fbecaefe57d4456691a754b30fff49055a44d1c7 /src | |
parent | 0cd2c43fa8f3a66d612589ad1163a90e427668ac (diff) |
sna: Fix typo in DBG
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src')
-rw-r--r-- | src/sna/sna_display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sna/sna_display.c b/src/sna/sna_display.c index c2f5e981..ad5b5cd3 100644 --- a/src/sna/sna_display.c +++ b/src/sna/sna_display.c @@ -2390,7 +2390,7 @@ sna_output_set_property(xf86OutputPtr output, Atom property, val = *(INT32 *)value->data; DBG(("%s: setting backlight to %d (max=%d)\n", - ___FUNCTION__, val, sna_output->backlight_max)); + __FUNCTION__, val, sna_output->backlight_max)); if (val < 0 || val > sna_output->backlight_max) return FALSE; |