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>2014-04-26 18:21:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-26 18:25:15 +0400
commit15d77d201d667d5b7f4277cff91f11400e85971a (patch)
tree82b0a96778aeab1780a9ff33b76e2dc6c085d1ab /source/blender/windowmanager/intern/wm_cursors.c
parente73d0f57a32f309433c005c06d6da2048f274c04 (diff)
Code cleanup: use 'const' for arrays (windowmanager)
Diffstat (limited to 'source/blender/windowmanager/intern/wm_cursors.c')
-rw-r--r--source/blender/windowmanager/intern/wm_cursors.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_cursors.c b/source/blender/windowmanager/intern/wm_cursors.c
index 01cd1514a3a..9a9e113ba90 100644
--- a/source/blender/windowmanager/intern/wm_cursors.c
+++ b/source/blender/windowmanager/intern/wm_cursors.c
@@ -300,7 +300,7 @@ void WM_cursor_time(wmWindow *win, int nr)
/* print number bottom right justified */
for (idx = 3; nr && idx >= 0; idx--) {
- char *digit = number_bitmaps[nr % 10];
+ const char *digit = number_bitmaps[nr % 10];
int x = idx % 2;
int y = idx / 2;