Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/hal/drivers/mesa-hostmot2/hostmot2.h
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ typedef struct {
rtapi_u32 idrom_type;
rtapi_u32 offset_to_modules;
rtapi_u32 offset_to_pin_desc;
rtapi_u8 board_name[8]; // ascii string, but not NULL terminated!
rtapi_u8 board_name[8] __attribute__ ((nonstring)); // ASCII string, but not NULL terminated!
rtapi_u32 fpga_size;
rtapi_u32 fpga_pins;
rtapi_u32 io_ports;
Expand Down
2 changes: 1 addition & 1 deletion src/hal/drivers/mesa-hostmot2/llio_info.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include "llio_info.h"

typedef struct __info_entry_t {
char board_name[8];
char board_name[8] __attribute__ ((nonstring));
const char *base_name;
int num_ioport_connectors;
int pins_per_connector;
Expand Down
Loading