Skip to content

Commit

Permalink
explicit signed char in kodak_radc
Browse files Browse the repository at this point in the history
  • Loading branch information
alextutubalin committed Aug 25, 2016
1 parent 94ee55e commit 4075372
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dcraw/dcraw.c
Expand Up @@ -2753,7 +2753,7 @@ void CLASS quicktake_100_load_raw()

void CLASS kodak_radc_load_raw()
{
static const char src[] = {
static const signed char src[] = {
1,1, 2,3, 3,4, 4,2, 5,7, 6,5, 7,6, 7,8,
1,0, 2,1, 3,3, 4,4, 5,2, 6,7, 7,6, 8,5, 8,8,
2,1, 2,3, 3,0, 3,2, 3,4, 4,6, 5,5, 6,7, 6,8,
Expand Down
2 changes: 1 addition & 1 deletion internal/dcraw_common.cpp
Expand Up @@ -2469,7 +2469,7 @@ void CLASS quicktake_100_load_raw()

void CLASS kodak_radc_load_raw()
{
static const char src[] = {
static const signed char src[] = {
1,1, 2,3, 3,4, 4,2, 5,7, 6,5, 7,6, 7,8,
1,0, 2,1, 3,3, 4,4, 5,2, 6,7, 7,6, 8,5, 8,8,
2,1, 2,3, 3,0, 3,2, 3,4, 4,6, 5,5, 6,7, 6,8,
Expand Down

0 comments on commit 4075372

Please sign in to comment.