1From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2From: Moritz Sanft <58110325+msanft@users.noreply.github.com>
3Date: Fri, 20 Dec 2024 16:38:55 +0100
4Subject: [PATCH] nvc: fix struct declaration
5
6---
7 src/nvcgo.c | 3 ++-
8 1 file changed, 2 insertions(+), 1 deletion(-)
9
10diff --git a/src/nvcgo.c b/src/nvcgo.c
11index 2e090c9bef83e165dfb722ab27e3287407466173..643504cd485fbe4a89d5959a1adfb69ff6748576 100644
12--- a/src/nvcgo.c
13+++ b/src/nvcgo.c
14@@ -33,7 +33,8 @@
15 void nvcgo_program_1(struct svc_req *, register SVCXPRT *);
16
17 static struct nvcgo_ext {
18- struct nvcgo;
19+ struct rpc rpc;
20+ struct libnvcgo api;
21 bool initialized;
22 void *dl_handle;
23 } global_nvcgo_context;