aboutsummaryrefslogtreecommitdiff
path: root/core/prof
diff options
context:
space:
mode:
authorColin Davidson <colrdavidson@gmail.com>2025-07-28 16:27:54 -0700
committerColin Davidson <colrdavidson@gmail.com>2025-07-28 16:27:54 -0700
commite1fd69f573bcf8ba9c8cfc961a007ab23aa83135 (patch)
tree2c971b9ea2c510575067320c1bc16bbf2d972577 /core/prof
parent7986d859243e95a82c334bdbe6f2761a6a41209e (diff)
oops, one more manual_header
Diffstat (limited to 'core/prof')
-rw-r--r--core/prof/spall/spall.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/prof/spall/spall.odin b/core/prof/spall/spall.odin
index e11404bcd..4d37913e4 100644
--- a/core/prof/spall/spall.odin
+++ b/core/prof/spall/spall.odin
@@ -88,7 +88,7 @@ context_create_with_scale :: proc(filename: string, precise_time: bool, timestam
ctx.precise_time = precise_time
ctx.timestamp_scale = timestamp_scale
- temp := [size_of(Manual_Header)]u8{}
+ temp := [size_of(Manual_Stream_Header)]u8{}
_build_stream_header(temp[:], ctx.timestamp_scale)
os.write(ctx.fd, temp[:])
ok = true