public inbox for newlib-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] Fix order of arguments in the TRACEBUF_INITIALIZER
@ 2017-04-04 10:17 Corinna Vinschen
  0 siblings, 0 replies; only message in thread
From: Corinna Vinschen @ 2017-04-04 10:17 UTC (permalink / raw)
  To: newlib-cvs

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=d3f9311fff9e16241590f0bc10cf5466f04b40b7

commit d3f9311fff9e16241590f0bc10cf5466f04b40b7
Author: hselasky <hselasky@FreeBSD.org>
Date:   Tue Apr 4 12:00:25 2017 +0200

    Fix order of arguments in the TRACEBUF_INITIALIZER
    
    Fix order of arguments in the TRACEBUF_INITIALIZER macro so that we can
    define QUEUE_MACRO_DEBUG to debug list problems.
    
    MFC after:	1 week

Diff:
---
 newlib/libc/include/sys/queue.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/newlib/libc/include/sys/queue.h b/newlib/libc/include/sys/queue.h
index 7a5bc79..d9908a4 100644
--- a/newlib/libc/include/sys/queue.h
+++ b/newlib/libc/include/sys/queue.h
@@ -116,7 +116,7 @@ struct qm_trace {
 };
 
 #define	TRACEBUF	struct qm_trace trace;
-#define	TRACEBUF_INITIALIZER	{ __FILE__, __LINE__, NULL, 0 } ,
+#define	TRACEBUF_INITIALIZER	{ __LINE__, 0, __FILE__, NULL } ,
 #define	TRASHIT(x)	do {(x) = (void *)-1;} while (0)
 #define	QMD_SAVELINK(name, link)	void **name = (void *)&(link)


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-04-04 10:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-04 10:17 [newlib-cygwin] Fix order of arguments in the TRACEBUF_INITIALIZER Corinna Vinschen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).