diff options
author | José Fonseca <[email protected]> | 2008-09-08 22:57:01 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-09-08 22:57:01 +0900 |
commit | d25611ede005adddfd9c004b037d9202d94df69e (patch) | |
tree | 1263e28da4b916adebee8f46c4a4345db0775c58 /src/gallium/drivers/trace/tr_dump.c | |
parent | a4a739eb58f70368ef87c195ea77629c1526e71f (diff) |
trace: Request a growable file.
Diffstat (limited to 'src/gallium/drivers/trace/tr_dump.c')
-rw-r--r-- | src/gallium/drivers/trace/tr_dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/trace/tr_dump.c b/src/gallium/drivers/trace/tr_dump.c index 0a42aacaecc..a0ead0ded33 100644 --- a/src/gallium/drivers/trace/tr_dump.c +++ b/src/gallium/drivers/trace/tr_dump.c @@ -228,7 +228,7 @@ boolean trace_dump_trace_begin() if(!stream) { - stream = util_stream_create(filename); + stream = util_stream_create(filename, 0); if(!stream) return FALSE; |