[PATCH 1/6] clone: Make the 'junk_mode' symbol a file static

Subsystems: the rest

STALE3736d

3 messages, 3 authors, 2016-06-15 · open the first message on its own page

[PATCH 1/6] clone: Make the 'junk_mode' symbol a file static

From: Ramsay Jones <hidden>
Date: 2016-06-15 22:57:02

Sparse issues an "'junk_mode' not declared. Should it be static?"
warning. In order to suppress the warning, since this symbol does
not need more than file visibility, we simply add the static
modifier to it's declaration.

Signed-off-by: Ramsay Jones <redacted>
---
 builtin/clone.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/builtin/clone.c b/builtin/clone.c
index 58fee98..035ab64 100644
--- a/builtin/clone.c
+++ b/builtin/clone.c
@@ -387,7 +387,7 @@ static void clone_local(const char *src_repo, const char *dest_repo)
 static const char *junk_work_tree;
 static const char *junk_git_dir;
 static pid_t junk_pid;
-enum {
+static enum {
 	JUNK_LEAVE_NONE,
 	JUNK_LEAVE_REPO,
 	JUNK_LEAVE_ALL
-- 
1.8.2

Re: [PATCH 1/6] clone: Make the 'junk_mode' symbol a file static

From: Jeff King <hidden>
Date: 2016-06-15 22:57:03

On Sat, Apr 27, 2013 at 07:39:04PM +0100, Ramsay Jones wrote:
Sparse issues an "'junk_mode' not declared. Should it be static?"
warning. In order to suppress the warning, since this symbol does
not need more than file visibility, we simply add the static
modifier to it's declaration.
[...]
-enum {
+static enum {
 	JUNK_LEAVE_NONE,
Thanks. This one was done by me, and yes it should be static. I think it
is because I originally typed:

  enum junk_mode {
    ...
  };
  static enum junk_mode junk_mode;

and then later dropped the named type, but forgot to keep the static
keyword.

-Peff

Re: [PATCH 1/6] clone: Make the 'junk_mode' symbol a file static

From: Eric Sunshine <hidden>
Date: 2016-06-15 22:57:03

On Sat, Apr 27, 2013 at 2:39 PM, Ramsay Jones
[off-list ref] wrote:
Sparse issues an "'junk_mode' not declared. Should it be static?"
warning. In order to suppress the warning, since this symbol does
not need more than file visibility, we simply add the static
modifier to it's declaration.
s/it's/its/
Signed-off-by: Ramsay Jones <redacted>
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help