Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
wader committed Nov 2, 2023
1 parent e046470 commit 16e949b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion format/pe/coff.go
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ func peCoffStubDecode(d *decode.D) any {
d.FieldRawLen("signature", 4*8, d.AssertBitBuf([]byte("PE\x00\x00")))
d.FieldU16("machine", MachineTypeNames, scalar.UintHex)
numberOfSections := d.FieldU16("number_of_sections")
d.FieldU32("time_date_stamp", scalar.UintActualUnixTime(time.RFC3339))
d.FieldU32("time_date_stamp", scalar.UintActualUnixTimeDescription(time.Second, time.RFC3339))
pointerToSymbolTable := d.FieldU32("pointer_to_symbol_table", scalar.UintHex)
numberOfSymbols := d.FieldU32("number_of_symbols")
sizeOfOptionalHeader := d.FieldU16("size_of_optional_header")
Expand Down

0 comments on commit 16e949b

Please sign in to comment.