diff options
author | Jacek Antonelli | 2008-08-15 23:45:50 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:50 -0500 |
commit | 2a4dea528f670b9bb1f77ef27a8a1dd16603d114 (patch) | |
tree | 95c68e362703c9099d571ecbdc6142b1cda1e005 /linden/indra/newview/llwearable.cpp | |
parent | Second Life viewer sources 1.20.6 (diff) | |
download | meta-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 '')
-rw-r--r-- | linden/indra/newview/llwearable.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/newview/llwearable.cpp b/linden/indra/newview/llwearable.cpp index 9365eeb..6e8123a 100644 --- a/linden/indra/newview/llwearable.cpp +++ b/linden/indra/newview/llwearable.cpp | |||
@@ -185,7 +185,7 @@ const char* terse_F32_to_string( F32 f, char s[MAX_STRING] ) /* Flawfinder: ign | |||
185 | return r; | 185 | return r; |
186 | } | 186 | } |
187 | 187 | ||
188 | BOOL LLWearable::exportFile( FILE* file ) | 188 | BOOL LLWearable::exportFile( LLFILE* file ) |
189 | { | 189 | { |
190 | // header and version | 190 | // header and version |
191 | if( fprintf( file, "LLWearable version %d\n", mDefinitionVersion ) < 0 ) | 191 | if( fprintf( file, "LLWearable version %d\n", mDefinitionVersion ) < 0 ) |
@@ -266,7 +266,7 @@ BOOL LLWearable::exportFile( FILE* file ) | |||
266 | 266 | ||
267 | 267 | ||
268 | 268 | ||
269 | BOOL LLWearable::importFile( FILE* file ) | 269 | BOOL LLWearable::importFile( LLFILE* file ) |
270 | { | 270 | { |
271 | // *NOTE: changing the type or size of this buffer will require | 271 | // *NOTE: changing the type or size of this buffer will require |
272 | // changes in the fscanf() code below. You would be better off | 272 | // changes in the fscanf() code below. You would be better off |
@@ -852,7 +852,7 @@ void LLWearable::saveNewAsset() | |||
852 | mAssetID.toString(new_asset_id_string); | 852 | mAssetID.toString(new_asset_id_string); |
853 | char filename[LL_MAX_PATH]; /* Flawfinder: ignore */ | 853 | char filename[LL_MAX_PATH]; /* Flawfinder: ignore */ |
854 | snprintf(filename, LL_MAX_PATH, "%s.wbl", gDirUtilp->getExpandedFilename(LL_PATH_CACHE,new_asset_id_string).c_str()); /* Flawfinder: ignore */ | 854 | snprintf(filename, LL_MAX_PATH, "%s.wbl", gDirUtilp->getExpandedFilename(LL_PATH_CACHE,new_asset_id_string).c_str()); /* Flawfinder: ignore */ |
855 | FILE* fp = LLFile::fopen(filename, "wb"); /* Flawfinder: ignore */ | 855 | LLFILE* fp = LLFile::fopen(filename, "wb"); /* Flawfinder: ignore */ |
856 | BOOL successful_save = FALSE; | 856 | BOOL successful_save = FALSE; |
857 | if(fp && exportFile(fp)) | 857 | if(fp && exportFile(fp)) |
858 | { | 858 | { |