Skip to content

Commit

Permalink
rasdaemon: ras-non-standard-handler: Fix checkpatch warning
Browse files Browse the repository at this point in the history
Fix following checkpatch warning,
CHECK: spaces preferred around that '*' (ctx:WxV)
+	sqlite3_stmt	*stmt_dec_record;

Signed-off-by: Shiju Jose <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
  • Loading branch information
shijujose4 authored and mchehab committed Nov 18, 2024
1 parent 3078199 commit 736e8ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ras-non-standard-handler.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ struct ras_ns_ev_decoder {
int (*decode)(struct ras_events *ras, struct ras_ns_ev_decoder *ev_decoder,
struct trace_seq *s, struct ras_non_standard_event *event);
#ifdef HAVE_SQLITE3
sqlite3_stmt *stmt_dec_record;
struct sqlite3_stmt *stmt_dec_record;
#endif
};

Expand Down

0 comments on commit 736e8ba

Please sign in to comment.