Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-08-27 07:34:11 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-08-27 07:34:11 +0400
commitca1e9d2c1812ac518aac5a8ec7df4baea56918d2 (patch)
tree48370ece2514a361a4b20756851518d0adb7efba /source/blender/avi
parentc96f28a718b0c94b52781cc91d384d2aeedf8c02 (diff)
replace octal 0177 with 127 to be more clear, no functional change.
Diffstat (limited to 'source/blender/avi')
-rw-r--r--source/blender/avi/intern/avi.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/avi/intern/avi.c b/source/blender/avi/intern/avi.c
index ff3aafbf065..8ad751a5b40 100644
--- a/source/blender/avi/intern/avi.c
+++ b/source/blender/avi/intern/avi.c
@@ -87,17 +87,17 @@ unsigned int GET_TCC (FILE *fp) {
}
char *fcc_to_char (unsigned int fcc) {
- DEBUG_FCC[0]= (fcc)&0177;
- DEBUG_FCC[1]= (fcc>>8)&0177;
- DEBUG_FCC[2]= (fcc>>16)&0177;
- DEBUG_FCC[3]= (fcc>>24)&0177;
+ DEBUG_FCC[0]= (fcc)&127;
+ DEBUG_FCC[1]= (fcc>>8)&127;
+ DEBUG_FCC[2]= (fcc>>16)&127;
+ DEBUG_FCC[3]= (fcc>>24)&127;
return DEBUG_FCC;
}
char *tcc_to_char (unsigned int tcc) {
- DEBUG_FCC[0]= (tcc)&0177;
- DEBUG_FCC[1]= (tcc>>8)&0177;
+ DEBUG_FCC[0]= (tcc)&127;
+ DEBUG_FCC[1]= (tcc>>8)&127;
DEBUG_FCC[2]= 0;
DEBUG_FCC[3]= 0;