Skip to content

Commit b901038

Browse files
authored
Fix typo #ifdef RESWAPPEDDCODESTREAM -- should be RESWAPPEDCODESTREAM (#106)
1 parent bed68c8 commit b901038

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

inc/byteswapdefs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ unsigned short byte_swap_word(unsigned short word);
55
void byte_swap_page(unsigned short *page, int wordcount);
66
void word_swap_page(unsigned short *page, int longwordcount);
77
void bit_reverse_region(unsigned short *top, int width, int height, int rasterwidth);
8-
#ifdef RESWAPPEDDCODESTREAM
8+
#ifdef RESWAPPEDCODESTREAM
99
unsigned int byte_swap_code_block(unsigned int *base);
1010
#endif
1111
#endif

src/byteswap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ void bit_reverse_region(unsigned short *top, int width, int height, int rasterwi
166166
/* */
167167
/************************************************************************/
168168

169-
#ifdef RESWAPPEDDCODESTREAM
169+
#ifdef RESWAPPEDCODESTREAM
170170
unsigned int byte_swap_code_block(unsigned int *base) {
171171
UNSIGNED startpc, len;
172172

0 commit comments

Comments
 (0)