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>2020-02-14 05:58:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-02-14 05:58:58 +0300
commit489cecb9548337e767dee3b1b1828e03835aa0b1 (patch)
tree60ed7e579cb20a8bddd0931b9f34d3b105c80e3a /source/blender/editors/space_info/info_draw.c
parent69be8039e80f55760ddc652bf79240d9d5ab38bc (diff)
Cleanup: change textview 'unsigned char' to 'uchar'
Diffstat (limited to 'source/blender/editors/space_info/info_draw.c')
-rw-r--r--source/blender/editors/space_info/info_draw.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/space_info/info_draw.c b/source/blender/editors/space_info/info_draw.c
index d0ff9495a74..1c56e17054b 100644
--- a/source/blender/editors/space_info/info_draw.c
+++ b/source/blender/editors/space_info/info_draw.c
@@ -43,11 +43,11 @@
#include "GPU_framebuffer.h"
static int report_line_data(struct TextViewContext *tvc,
- unsigned char fg[4],
- unsigned char bg[4],
+ uchar fg[4],
+ uchar bg[4],
int *icon,
- unsigned char icon_fg[4],
- unsigned char icon_bg[4])
+ uchar icon_fg[4],
+ uchar icon_bg[4])
{
Report *report = (Report *)tvc->iter;