remove unnecessary struct tags

This commit is contained in:
2025-04-29 20:34:11 +02:00
parent 504c950c15
commit 2b55717595
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
#include <linux/types.h>
typedef struct tictactoe_game {
typedef struct {
char next_turn;
char winner;
char board[3][3];
+1 -1
View File
@@ -10,7 +10,7 @@
#define tictactoe_error(format, ...) \
pr_err("%s: " format, __func__, ##__VA_ARGS__)
typedef struct annotated_string {
typedef struct {
struct mutex lock;
size_t len;
char *buf;