From 8228a2440b1d4a71c6e0fedba6819ef9c2cb2b63 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 18 May 2025 22:42:00 +0200 Subject: [PATCH] afs.h: Omit superfluous semicolons. The DECLARE_BLOB_SYMBOLS macro expands to a bunch of declarations, each of which is terminated by a semicolon. So don't add another one. --- afs.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/afs.h b/afs.h index e8b8c865..622ac70f 100644 --- a/afs.h +++ b/afs.h @@ -300,10 +300,10 @@ int playlist_check_callback(struct afs_callback_arg *aca); extern const struct afs_table_operations table_name ## _ops; /** \cond blob_symbols */ -DECLARE_BLOB_SYMBOLS(lyrics, lyr); -DECLARE_BLOB_SYMBOLS(images, img); -DECLARE_BLOB_SYMBOLS(moods, mood); -DECLARE_BLOB_SYMBOLS(playlists, pl); +DECLARE_BLOB_SYMBOLS(lyrics, lyr) +DECLARE_BLOB_SYMBOLS(images, img) +DECLARE_BLOB_SYMBOLS(moods, mood) +DECLARE_BLOB_SYMBOLS(playlists, pl) /** \endcond blob_symbols */ /** The columns of an abstract blob table. */ -- 2.39.5