Skip to content

Commit

Permalink
[QA] Ensure local variables are static
Browse files Browse the repository at this point in the history
  • Loading branch information
rnorris committed Jan 18, 2025
1 parent b191d28 commit 736160e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/vikgobjectbuilder.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
#include "globals.h"

/* FIXME use private fields */
GType gtype = 0;
gchar *property_name = NULL;
GParameter *parameters = NULL;
gint nb_parameters = 0;
static GType gtype = 0;
static gchar *property_name = NULL;
static GParameter *parameters = NULL;
static gint nb_parameters = 0;

/* signals */
enum
Expand Down

0 comments on commit 736160e

Please sign in to comment.