Fix the wrong type casting on Generic Mifare Classic reader

If NFC Stack uses the Generic Mifare Classic reader,
Generic Mifare reader doesn't set the RW_NDEF_FL_FORMATED flag
even though the reader detects Ndef format because of wrong type casting(bool->tNFC_STATUS).
It is solved after the wrong type casting is fixed.

Bug: 172518568
Test: Perform Mifare Classic Tag Read/Write using Generic Mifare classic reader
Change-Id: Iba2132d26331c939b18623f1d06103874100602c
diff --git a/src/nfc/tags/rw_mfc.cc b/src/nfc/tags/rw_mfc.cc
index 54a68bf..df799d5 100644
--- a/src/nfc/tags/rw_mfc.cc
+++ b/src/nfc/tags/rw_mfc.cc
@@ -1055,7 +1055,7 @@
       if (tlv_found) {
         p_mfc->ndef_status = MFC_NDEF_DETECTED;
         p_mfc->ndef_first_block = p_mfc->last_block_accessed.block;
-        rw_mfc_ntf_tlv_detect_complete(tlv_found);
+        rw_mfc_ntf_tlv_detect_complete(NFC_STATUS_OK);
       }
       break;