moved variable declaration to prevent compiler warnings

Change-Id: If9a83589b220ae7d937ef75c79de57be11858cd1
This commit is contained in:
wbokslag 2022-07-13 11:28:50 +02:00
parent 1feba505bb
commit 6dfb41681c
1 changed files with 3 additions and 2 deletions

View File

@ -306,8 +306,7 @@ int build_sb()
int main(int argc, char **argv)
{
int err, i;
uint16_t out;
int i;
uint32_t ret;
/* first: run some subsystem tests */
@ -317,6 +316,8 @@ int main(int argc, char **argv)
tetra_rm3014_init();
#if 0
int err;
uint16_t out;
ret = tetra_rm3014_compute(0x1001);
printf("RM3014: 0x%08x\n", ret);