diff --git a/udfps/UdfpsHandler.cpp b/udfps/UdfpsHandler.cpp index 8452d20..1ad9082 100644 --- a/udfps/UdfpsHandler.cpp +++ b/udfps/UdfpsHandler.cpp @@ -60,7 +60,7 @@ static bool readBool(int fd) { return c != '0'; } -class XiaomiUdfpsHander : public UdfpsHandler { +class XiaomiUdfpsHandler : public UdfpsHandler { public: void init(fingerprint_device_t* device) { mDevice = device; @@ -140,7 +140,7 @@ class XiaomiUdfpsHander : public UdfpsHandler { }; static UdfpsHandler* create() { - return new XiaomiUdfpsHander(); + return new XiaomiUdfpsHandler(); } static void destroy(UdfpsHandler* handler) {