diff options
author | José Fonseca <jfonseca@vmware.com> | 2010-02-14 16:55:25 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-02-14 23:25:33 +0000 |
commit | 323c6f8a2e449c46e1d67c55c45fb243445e575c (patch) | |
tree | fbdb55a819c6e3c243c7295ccc2fb39fc905ec9c /src | |
parent | 2b4575f16d24a212b9a43cbd4a9966b3668e4b32 (diff) |
util: Update for os_stream changes.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/util/u_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_debug.c b/src/gallium/auxiliary/util/u_debug.c index 688083d232..858d52c6ef 100644 --- a/src/gallium/auxiliary/util/u_debug.c +++ b/src/gallium/auxiliary/util/u_debug.c @@ -590,7 +590,7 @@ debug_dump_float_rgba_bmp(const char *filename, bmih.biClrUsed = 0; bmih.biClrImportant = 0; - stream = os_stream_create(filename, bmfh.bfSize); + stream = os_file_stream_create(filename); if(!stream) goto error1; |