Skip to content

Commit

Permalink
Update INTEGER.c
Browse files Browse the repository at this point in the history
Experimenting to remedy compiler warning related to GCC bug
  • Loading branch information
mouse07410 authored Apr 1, 2024
1 parent 54b0178 commit cec075f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions skeletons/INTEGER.c
Original file line number Diff line number Diff line change
Expand Up @@ -322,11 +322,11 @@ asn_umax2INTEGER(INTEGER_t *st, uintmax_t value) {
int
asn_imax2INTEGER(INTEGER_t *st, intmax_t value) {
uint8_t *buf, *bp;
uint8_t *p;
uint8_t *pstart;
volatile uint8_t *p;
volatile uint8_t *pstart;
volatile uint8_t *pend1;
int littleEndian = 1; /* Run-time detection */
int add;
volatile int add;

if(!st) {
errno = EINVAL;
Expand Down

0 comments on commit cec075f

Please sign in to comment.