mirror of
https://github.com/libgit2/libgit2.git
synced 2026-06-22 06:26:26 +00:00
clar: declare summary functions as static
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
#include <stdio.h>
|
||||
#include <time.h>
|
||||
|
||||
int clar_summary_close_tag(
|
||||
static int clar_summary_close_tag(
|
||||
struct clar_summary *summary, const char *tag, int indent)
|
||||
{
|
||||
const char *indt;
|
||||
@@ -14,12 +14,12 @@ int clar_summary_close_tag(
|
||||
return fprintf(summary->fp, "%s</%s>\n", indt, tag);
|
||||
}
|
||||
|
||||
int clar_summary_testsuites(struct clar_summary *summary)
|
||||
static int clar_summary_testsuites(struct clar_summary *summary)
|
||||
{
|
||||
return fprintf(summary->fp, "<testsuites>\n");
|
||||
}
|
||||
|
||||
int clar_summary_testsuite(struct clar_summary *summary,
|
||||
static int clar_summary_testsuite(struct clar_summary *summary,
|
||||
int idn, const char *name, const char *pkg, time_t timestamp,
|
||||
double elapsed, int test_count, int fail_count, int error_count)
|
||||
{
|
||||
@@ -42,7 +42,7 @@ int clar_summary_testsuite(struct clar_summary *summary,
|
||||
idn, name, pkg, iso_dt, elapsed, test_count, fail_count, error_count);
|
||||
}
|
||||
|
||||
int clar_summary_testcase(struct clar_summary *summary,
|
||||
static int clar_summary_testcase(struct clar_summary *summary,
|
||||
const char *name, const char *classname, double elapsed)
|
||||
{
|
||||
return fprintf(summary->fp,
|
||||
@@ -50,7 +50,7 @@ int clar_summary_testcase(struct clar_summary *summary,
|
||||
name, classname, elapsed);
|
||||
}
|
||||
|
||||
int clar_summary_failure(struct clar_summary *summary,
|
||||
static int clar_summary_failure(struct clar_summary *summary,
|
||||
const char *type, const char *message, const char *desc)
|
||||
{
|
||||
return fprintf(summary->fp,
|
||||
|
||||
Reference in New Issue
Block a user