From b85fe5c92dd5c9bbd8a171aab3110df3e9298dad Mon Sep 17 00:00:00 2001 From: The Horscht Date: Tue, 16 Jan 2024 18:09:06 +0100 Subject: [PATCH] Uncomment "found GUID" printing --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index ed5bb46..330db3b 100644 --- a/main.cpp +++ b/main.cpp @@ -205,7 +205,7 @@ int main(int argc, char** argv) { vector GUID(17); GUID[16] = 0; buffer.copy((char*)&GUID[0], 16, i + 1 + 4); - // cout << "Found a GUID at offset " << GUIDstartPos << " - " << ByteArrayToGUIDString(GUID) << " - " << ByteArrayToString(GUID) << endl; + cout << "Found a GUID at offset " << GUIDstartPos << " - " << ByteArrayToGUIDString(GUID) << " - " << ByteArrayToString(GUID) << endl; for(auto it = guidReplacePairs.begin(); it != guidReplacePairs.end(); it++) { const string lookFor = get<0>(*it); const string replaceWith = get<1>(*it);