Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
cfd16ca2
Commit
cfd16ca2
authored
Nov 13, 2013
by
Carlos Martín Nieto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests: make a few globals statics
ld was warning that the size of path changed, rightly so.
parent
6481e062
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
tests-clar/network/urlparse.c
+2
-2
tests-clar/repo/config.c
+1
-1
No files found.
tests-clar/network/urlparse.c
View file @
cfd16ca2
#include "clar_libgit2.h"
#include "netops.h"
char
*
host
,
*
port
,
*
path
,
*
user
,
*
pass
;
gitno_connection_data
conndata
;
static
char
*
host
,
*
port
,
*
path
,
*
user
,
*
pass
;
static
gitno_connection_data
conndata
;
void
test_network_urlparse__initialize
(
void
)
{
...
...
tests-clar/repo/config.c
View file @
cfd16ca2
...
...
@@ -2,7 +2,7 @@
#include "fileops.h"
#include <ctype.h>
git_buf
path
=
GIT_BUF_INIT
;
static
git_buf
path
=
GIT_BUF_INIT
;
void
test_repo_config__initialize
(
void
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment