[Bugfix][T106][bug-view-99]fix libautosuspend core dump when close fd

Only Configure: No
Affected branch: master
Affected module: libautosuspend
Is it affected on both ZXIC and MTK: only zxic
Self-test: Yes
Doc Update: No

Change-Id: I9990b144faa94be796b840cf45f42dcc03004cee
diff --git a/cap/zx297520v3/src/lynq/lib/liblynq-autosuspend/lynq-autosuspend.cpp b/cap/zx297520v3/src/lynq/lib/liblynq-autosuspend/lynq-autosuspend.cpp
index 09160b7..5dc3fe5 100755
--- a/cap/zx297520v3/src/lynq/lib/liblynq-autosuspend/lynq-autosuspend.cpp
+++ b/cap/zx297520v3/src/lynq/lib/liblynq-autosuspend/lynq-autosuspend.cpp
@@ -88,7 +88,7 @@
 }
 static int Close(int fd)
 {
-    if (Close(fd) == -1)
+    if (close(fd) == -1)
     {
         LYINFLOG("Close error\n");
         return -1;