mirror of
https://github.com/nelsbrock/dev-tictactoe.git
synced 2026-08-14 20:56:49 +02:00
remove unnecessary struct tags
This commit is contained in:
+1
-1
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
|
|
||||||
typedef struct tictactoe_game {
|
typedef struct {
|
||||||
char next_turn;
|
char next_turn;
|
||||||
char winner;
|
char winner;
|
||||||
char board[3][3];
|
char board[3][3];
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
#define tictactoe_error(format, ...) \
|
#define tictactoe_error(format, ...) \
|
||||||
pr_err("%s: " format, __func__, ##__VA_ARGS__)
|
pr_err("%s: " format, __func__, ##__VA_ARGS__)
|
||||||
|
|
||||||
typedef struct annotated_string {
|
typedef struct {
|
||||||
struct mutex lock;
|
struct mutex lock;
|
||||||
size_t len;
|
size_t len;
|
||||||
char *buf;
|
char *buf;
|
||||||
|
|||||||
Reference in New Issue
Block a user