Use more consistent function name with the others (pjdlogv_prefix_set()

instead of pjdlog_prefix_setv()).

MFC after:	1 week
This commit is contained in:
Pawel Jakub Dawidek 2011-01-22 22:35:08 +00:00
parent 911a2aa37a
commit 09d6ae1b34
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=217731
2 changed files with 3 additions and 3 deletions

View File

@ -105,7 +105,7 @@ pjdlog_prefix_set(const char *fmt, ...)
va_list ap;
va_start(ap, fmt);
pjdlog_prefix_setv(fmt, ap);
pjdlogv_prefix_set(fmt, ap);
va_end(ap);
}
@ -114,7 +114,7 @@ pjdlog_prefix_set(const char *fmt, ...)
* Setting prefix to NULL will remove it.
*/
void
pjdlog_prefix_setv(const char *fmt, va_list ap)
pjdlogv_prefix_set(const char *fmt, va_list ap)
{
assert(fmt != NULL);

View File

@ -48,7 +48,7 @@ void pjdlog_debug_set(int level);
int pjdlog_debug_get(void);
void pjdlog_prefix_set(const char *fmt, ...) __printflike(1, 2);
void pjdlog_prefix_setv(const char *fmt, va_list ap) __printflike(1, 0);
void pjdlogv_prefix_set(const char *fmt, va_list ap) __printflike(1, 0);
void pjdlog_common(int loglevel, int debuglevel, int error, const char *fmt,
...) __printflike(4, 5);