From bfa7c7d9e2fc4e634958f19d7a973d44c4da25e2 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Mon, 3 Aug 2015 16:26:13 -0700 Subject: [PATCH] Fix a comment typo. Change-Id: Ifacb19b9c31ac81fbf02c8382eb0324ea79075b9 --- adb/sysdeps_win32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adb/sysdeps_win32.cpp b/adb/sysdeps_win32.cpp index ec28ccd6d..a37cff80e 100644 --- a/adb/sysdeps_win32.cpp +++ b/adb/sysdeps_win32.cpp @@ -3366,7 +3366,7 @@ std::string narrow(const std::wstring& utf16) { // Convert from UTF-16 to UTF-8. std::string narrow(const wchar_t* utf16) { // Note: Do not call SystemErrorCodeToString() from narrow() because - // SystemErrorCodeToString() calls narrows() and we don't want potential + // SystemErrorCodeToString() calls narrow() and we don't want potential // infinite recursion. const int chars_required = WideCharToMultiByte(CP_UTF8, 0, utf16, -1, NULL, 0, NULL, NULL);