Index: sandbox/win/sandbox_poc/pocdll/handles.cc |
diff --git a/sandbox/win/sandbox_poc/pocdll/handles.cc b/sandbox/win/sandbox_poc/pocdll/handles.cc |
index 483e24a4441b8a9b5792085e51be4a9ec6cadccf..a12d4334116285f4bd98338273521ef197ca521c 100644 |
--- a/sandbox/win/sandbox_poc/pocdll/handles.cc |
+++ b/sandbox/win/sandbox_poc/pocdll/handles.cc |
@@ -153,14 +153,14 @@ void POCDLL_API TestGetHandle(HANDLE log) { |
file_name_string.Length = (USHORT)file_name->FileNameLength; |
file_name_string.MaximumLength = (USHORT)file_name->FileNameLength; |
fprintf(output, "[GRANTED] Handle 0x%4.4X Access: 0x%8.8lX " |
- "Type: %-13.13wZ Path: %wZ\r\n", |
+ "Type: %-13wZ Path: %wZ\r\n", |
h, |
system_handles->Information[i].GrantedAccess, |
type ? &type->TypeName : NULL, |
&file_name_string); |
} else { |
fprintf(output, "[GRANTED] Handle 0x%4.4X Access: 0x%8.8lX " |
- "Type: %-13.13wZ Path: %wZ\r\n", |
+ "Type: %-13wZ Path: %wZ\r\n", |
h, |
system_handles->Information[i].GrantedAccess, |
type ? &type->TypeName : NULL, |