diff options
| author | Teddy Wing | 2018-11-21 09:04:44 +0100 | 
|---|---|---|
| committer | Teddy Wing | 2018-11-21 09:04:44 +0100 | 
| commit | 38ccb84af29fde593245541d794a17f0b87849a7 (patch) | |
| tree | 19a84a017ad711bf4e70f08a5d18094b0e4d2700 | |
| parent | 12dfe9df15b408673a0c1cfd81a9432a0de38a13 (diff) | |
| download | DDHidLib-38ccb84af29fde593245541d794a17f0b87849a7.tar.bz2 | |
DDHidQueue.m: Fix import case warningDDHidQueue--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.
| -rw-r--r-- | lib/DDHidQueue.m | 2 | 
1 files changed, 1 insertions, 1 deletions
| 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, | 
