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
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-05-28 11:23:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-05-28 11:46:14 +0300
commit3dd346c2a15d0ded724f29459af0116e8ff6b955 (patch)
treed42df6d0c36ddcd7e0bfc0bef91c2b387d2c6db3 /intern
parent89c56f6e47969f799d9583eab638d2e48d8debf4 (diff)
Cleanup: warning
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_DropTargetX11.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_DropTargetX11.cpp b/intern/ghost/intern/GHOST_DropTargetX11.cpp
index 639fd503759..0efc8a78df5 100644
--- a/intern/ghost/intern/GHOST_DropTargetX11.cpp
+++ b/intern/ghost/intern/GHOST_DropTargetX11.cpp
@@ -132,7 +132,8 @@ void GHOST_DropTargetX11::UrlDecode(char *decodedOut, int bufferSize, const char
unsigned int i;
unsigned int len = strlen(encodedIn);
DecodeState_e state = STATE_SEARCH;
- int j, asciiCharacter;
+ int j;
+ unsigned int asciiCharacter;
char tempNumBuf[3] = {0};
bool bothDigits = true;