Skip to content

Commit b85fe5c

Browse files
committed
Uncomment "found GUID" printing
1 parent e73dd8b commit b85fe5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ int main(int argc, char** argv) {
205205
vector<uint8_t> GUID(17);
206206
GUID[16] = 0;
207207
buffer.copy((char*)&GUID[0], 16, i + 1 + 4);
208-
// cout << "Found a GUID at offset " << GUIDstartPos << " - " << ByteArrayToGUIDString(GUID) << " - " << ByteArrayToString(GUID) << endl;
208+
cout << "Found a GUID at offset " << GUIDstartPos << " - " << ByteArrayToGUIDString(GUID) << " - " << ByteArrayToString(GUID) << endl;
209209
for(auto it = guidReplacePairs.begin(); it != guidReplacePairs.end(); it++) {
210210
const string lookFor = get<0>(*it);
211211
const string replaceWith = get<1>(*it);

0 commit comments

Comments
 (0)