Commit 3c2ba8cd authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Make VSLR() static, it's unused outside shmlog.c


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@2604 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 66f62b5f
...@@ -519,7 +519,6 @@ void SES_Charge(struct sess *sp); ...@@ -519,7 +519,6 @@ void SES_Charge(struct sess *sp);
void VSL_Init(void); void VSL_Init(void);
#ifdef SHMLOGHEAD_MAGIC #ifdef SHMLOGHEAD_MAGIC
void VSLR(enum shmlogtag tag, int id, txt t);
void VSL(enum shmlogtag tag, int id, const char *fmt, ...); void VSL(enum shmlogtag tag, int id, const char *fmt, ...);
void WSLR(struct worker *w, enum shmlogtag tag, int id, txt t); void WSLR(struct worker *w, enum shmlogtag tag, int id, txt t);
void WSL(struct worker *w, enum shmlogtag tag, int id, const char *fmt, ...); void WSL(struct worker *w, enum shmlogtag tag, int id, const char *fmt, ...);
......
...@@ -95,7 +95,7 @@ vsl_hdr(enum shmlogtag tag, unsigned char *p, unsigned len, unsigned id) ...@@ -95,7 +95,7 @@ vsl_hdr(enum shmlogtag tag, unsigned char *p, unsigned len, unsigned id)
* taking the detour over sprintf() * taking the detour over sprintf()
*/ */
void static void
VSLR(enum shmlogtag tag, int id, txt t) VSLR(enum shmlogtag tag, int id, txt t)
{ {
unsigned char *p; unsigned char *p;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment