
6 Apr
2020
6 Apr
'20
1:22 a.m.
The intention here is add a forward declaration, not actually declare a variable. Fix it.
Signed-off-by: Simon Glass sjg@chromium.org ---
include/cbfs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/cbfs.h b/include/cbfs.h index f3bc8ca24af..d915f9426d8 100644 --- a/include/cbfs.h +++ b/include/cbfs.h @@ -135,7 +135,7 @@ void file_cbfs_get_next(const struct cbfs_cachenode **file); */ const struct cbfs_cachenode *file_cbfs_find(const char *name);
-struct cbfs_priv *priv; +struct cbfs_priv;
/** * cbfs_find_file() - Find a file in a given CBFS
--
2.26.0.292.g33ef6b2f38-goog