aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llsys.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llcommon/llsys.h')
-rw-r--r--linden/indra/llcommon/llsys.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llcommon/llsys.h b/linden/indra/llcommon/llsys.h
index da7f07e..b764ca9 100644
--- a/linden/indra/llcommon/llsys.h
+++ b/linden/indra/llcommon/llsys.h
@@ -127,9 +127,9 @@ std::ostream& operator<<(std::ostream& s, const LLCPUInfo& info);
127std::ostream& operator<<(std::ostream& s, const LLMemoryInfo& info); 127std::ostream& operator<<(std::ostream& s, const LLMemoryInfo& info);
128 128
129// gunzip srcfile into dstfile. Returns FALSE on error. 129// gunzip srcfile into dstfile. Returns FALSE on error.
130BOOL gunzip_file(const char *srcfile, const char *dstfile); 130BOOL gunzip_file(const std::string& srcfile, const std::string& dstfile);
131// gzip srcfile into dstfile. Returns FALSE on error. 131// gzip srcfile into dstfile. Returns FALSE on error.
132BOOL gzip_file(const char *srcfile, const char *dstfile); 132BOOL gzip_file(const std::string& srcfile, const std::string& dstfile);
133 133
134extern LLCPUInfo gSysCPU; 134extern LLCPUInfo gSysCPU;
135 135