|
|
sfeed_curses.c: make struct urls static like the other variables - sfeed - RSS and Atom parser |
|
|
 |
git clone git://git.codemadness.org/sfeed (git://git.codemadness.org) |
|
|
 |
Log |
|
|
 |
Files |
|
|
 |
Refs |
|
|
 |
README |
|
|
 |
LICENSE |
|
|
|
--- |
|
|
 |
commit 538e7dc0ccf065bf59b952a46ff5658ea19f3bab |
|
|
 |
parent 3909786d90499355617cba619d3668771b7a56d3 |
|
|
 |
Author: Hiltjo Posthuma <hiltjo@codemadness.org> (mailto://) |
application/vnd.lotus-organizer |
|
|
Date: Sun, 14 May 2023 23:38:17 +0200 |
|
|
|
|
|
|
|
sfeed_curses.c: make struct urls static like the other variables |
|
|
|
|
|
|
|
Diffstat: |
|
|
|
M sfeed_curses.c | 2 +- |
|
|
|
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-) |
|
|
|
--- |
|
|
 |
diff --git a/sfeed_curses.c b/sfeed_curses.c |
|
|
|
@@ -175,7 +175,7 @@ static struct feed *feeds; |
|
|
|
static struct feed *curfeed; |
|
|
|
static size_t nfeeds; /* amount of feeds */ |
|
|
|
static time_t comparetime; |
|
|
|
-struct urls urls; |
|
|
|
+static struct urls urls; |
|
|
|
static char *urlfile; |
|
|
|
|
|
|
|
volatile sig_atomic_t state_sigchld = 0, state_sighup = 0, state_sigint = 0; |
|