aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmessage/lldatapacker.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:50 -0500
committerJacek Antonelli2008-08-15 23:45:50 -0500
commit2a4dea528f670b9bb1f77ef27a8a1dd16603d114 (patch)
tree95c68e362703c9099d571ecbdc6142b1cda1e005 /linden/indra/llmessage/lldatapacker.h
parentSecond Life viewer sources 1.20.6 (diff)
downloadmeta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.zip
meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.gz
meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.bz2
meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.xz
Second Life viewer sources 1.20.7
Diffstat (limited to 'linden/indra/llmessage/lldatapacker.h')
-rw-r--r--linden/indra/llmessage/lldatapacker.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llmessage/lldatapacker.h b/linden/indra/llmessage/lldatapacker.h
index f41fb76..b1aa8fe 100644
--- a/linden/indra/llmessage/lldatapacker.h
+++ b/linden/indra/llmessage/lldatapacker.h
@@ -330,7 +330,7 @@ inline BOOL LLDataPackerAsciiBuffer::verifyLength(const S32 data_size, const cha
330class LLDataPackerAsciiFile : public LLDataPacker 330class LLDataPackerAsciiFile : public LLDataPacker
331{ 331{
332public: 332public:
333 LLDataPackerAsciiFile(FILE *fp, const S32 indent = 2) 333 LLDataPackerAsciiFile(LLFILE *fp, const S32 indent = 2)
334 : LLDataPacker(), 334 : LLDataPacker(),
335 mIndent(indent), 335 mIndent(indent),
336 mFP(fp), 336 mFP(fp),
@@ -407,7 +407,7 @@ protected:
407 407
408protected: 408protected:
409 S32 mIndent; 409 S32 mIndent;
410 FILE *mFP; 410 LLFILE *mFP;
411 std::ostream* mOutputStream; 411 std::ostream* mOutputStream;
412 std::istream* mInputStream; 412 std::istream* mInputStream;
413}; 413};