From 2910b880812362fcc57cf30c4b30f0c450389352 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Thu, 18 May 2017 08:16:18 +0100 Subject: [PATCH] lib/remote: Add internal annotations to OstreeRemote MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Just for internal documentation; g-ir-scanner doesn’t read or understand them. Signed-off-by: Philip Withnall Closes: #875 Approved by: cgwalters --- src/libostree/ostree-remote-private.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libostree/ostree-remote-private.h b/src/libostree/ostree-remote-private.h index e207ed4c..13f757ed 100644 --- a/src/libostree/ostree-remote-private.h +++ b/src/libostree/ostree-remote-private.h @@ -38,9 +38,9 @@ G_BEGIN_DECLS struct OstreeRemote { volatile int ref_count; - char *name; - char *group; /* group name in options */ - char *keyring; /* keyring name (NAME.trustedkeys.gpg) */ + char *name; /* (not nullable) */ + char *group; /* group name in options (not nullable) */ + char *keyring; /* keyring name (NAME.trustedkeys.gpg) (not nullable) */ GFile *file; /* NULL if remote defined in repo/config */ GKeyFile *options; };