Use C11 instead of GNU formatting for variable argument macros.

This commit is contained in:
Wilco Baan Hofman 2016-11-28 10:20:27 +01:00
parent 8caa9a68bc
commit 47b09119a4

View file

@ -16,7 +16,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#define DEBUG(level, args...) debug(level, __location__, __FUNCTION__, args) #define DEBUG(level, ...) debug(level, __location__, __func__, __VA_ARGS__)
typedef enum { typedef enum {