Skip to content

Commit

Permalink
Fix os_arch field to match with aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelKemp committed Oct 6, 2022
1 parent 16b52fa commit d285b84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/remoted_op.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @retval A string pointer to the architecture. NULL if not found.
*/
char * get_os_arch(char * os_header) {
const char * ARCHS[] = { "x86_64", "i386", "i686", "sparc", "amd64", "i86pc", "ia64", "AIX", "armv6", "armv7", NULL };
const char * ARCHS[] = { "x86_64", "i386", "i686", "sparc", "amd64", "i86pc", "ia64", "AIX", "armv6", "armv7", "aarch64", NULL };
char * os_arch = NULL;
int i;

Expand Down

0 comments on commit d285b84

Please sign in to comment.