From 38ccb84af29fde593245541d794a17f0b87849a7 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Wed, 21 Nov 2018 09:04:44 +0100 Subject: DDHidQueue.m: Fix import case warning Was getting the following warning: DDHidLib/lib/DDHidQueue.m:27:9: warning: non-portable path to file '"DDHidEvent.h"'; specified path differs in case from file name on disk [-Wnonportable-include-path] #import "DDHIdEvent.h" ^~~~~~~~~~~~~~ "DDHidEvent.h" 1 warning generated. This change corrects the case of the imported header file. --- lib/DDHidQueue.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/DDHidQueue.m b/lib/DDHidQueue.m index 4575dff..81fd5eb 100644 --- a/lib/DDHidQueue.m +++ b/lib/DDHidQueue.m @@ -24,7 +24,7 @@ #import "DDHidQueue.h" #import "DDHidElement.h" -#import "DDHIdEvent.h" +#import "DDHidEvent.h" #import "NSXReturnThrowError.h" static void queueCallbackFunction(void* target, IOReturn result, void* refcon, -- cgit v1.2.3