Skip to content

Commit

Permalink
plugins/innogrit: u_char -> unsigned char
Browse files Browse the repository at this point in the history
`u_char` is not a standard name for `unsigned char` and may not work;
some implementations may provide it for convenience.

Signed-off-by: Sam James <[email protected]>
  • Loading branch information
thesamesam authored and igaw committed May 10, 2024
1 parent ac2ff1d commit 0b15eb0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/innogrit/typedef.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ struct vsc_smart_log {
unsigned int low_pwr_cnt;
unsigned int wa;
unsigned int ps3_entry_cnt;
u_char highest_temp[4];
unsigned char highest_temp[4];
unsigned int weight_ec;
unsigned int slc_cap_mb;
unsigned long long nand_page_write_cnt;
unsigned int program_error_cnt;
unsigned int erase_error_cnt;
u_char flash_type;
u_char reserved2[3];
unsigned char flash_type;
unsigned char reserved2[3];
unsigned int hs_crc_err_cnt;
unsigned int ddr_ecc_err_cnt;
unsigned int reserved3[44];
Expand Down

0 comments on commit 0b15eb0

Please sign in to comment.