summaryrefslogtreecommitdiff
path: root/vcl/source/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-06-24 07:44:01 +0200
committerCaolán McNamara <caolanm@redhat.com>2014-06-24 15:30:16 +0000
commit290b7e0632921ca0c204eb91c8ebfd253813f137 (patch)
tree4a8ff8a4bf17a7c5f01f8d09f1ffe1e294351818 /vcl/source/filter
parente07cefb4f7ba39d59d25815e208ed61269079142 (diff)
remove use of register keyword in C files
C compilers have been ignoring it for the last decade Change-Id: I42918263121dd189bab9d27077798b779b9e8da1 Reviewed-on: https://gerrit.libreoffice.org/9873 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/source/filter')
-rw-r--r--vcl/source/filter/jpeg/transupp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/filter/jpeg/transupp.c b/vcl/source/filter/jpeg/transupp.c
index 4cae59ead666..9d4b7b82028c 100644
--- a/vcl/source/filter/jpeg/transupp.c
+++ b/vcl/source/filter/jpeg/transupp.c
@@ -98,8 +98,8 @@ static void lcl_jcopy_block_row (JBLOCKROW input_row, JBLOCKROW output_row, JDIM
#ifdef FMEMCOPY
FMEMCOPY(output_row, input_row, num_blocks * (DCTSIZE2 * SIZEOF(JCOEF)));
#else
- register JCOEFPTR inptr, outptr;
- register long count;
+ JCOEFPTR inptr, outptr;
+ long count;
inptr = (JCOEFPTR) input_row;
outptr = (JCOEFPTR) output_row;