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-20 03:18:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-02-20 04:21:05 +0300
commit146fe1decfd9fe8760df6d184770d6c8c2a5d994 (patch)
treebecd7f064ae16bba8ddb773ba637a44ce323043f /source/blender/imbuf
parent60e877bb78dce39e05b3d6d87b2a45803073f802 (diff)
Cleanup: remove use of 'register'
This isn't needed with modern compilers.
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/targa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/imbuf/intern/targa.c b/source/blender/imbuf/intern/targa.c
index b1077a6ae91..65ae8f8fa4b 100644
--- a/source/blender/imbuf/intern/targa.c
+++ b/source/blender/imbuf/intern/targa.c
@@ -127,9 +127,9 @@ static int tga_out4(unsigned int data, FILE *file)
static bool makebody_tga(ImBuf *ibuf, FILE *file, int (*out)(unsigned int, FILE *))
{
- register int last, this;
- register int copy, bytes;
- register unsigned int *rect, *rectstart, *temp;
+ int last, this;
+ int copy, bytes;
+ unsigned int *rect, *rectstart, *temp;
int y;
for (y = 0; y < ibuf->y; y++) {