blob: af0cd372381fd6761c3c8cb43bd5f6cfd7568889 [file] [log] [blame]
/* Test for warnings for non-string-literal formats. */
/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
/* { dg-do compile } */
/* { dg-options "-std=gnu99 -Wformat -Wformat-nonliteral" } */
#include "format.h"
void
foo (char *s, size_t i)
{
printf ((const char *)i, i); /* { dg-warning "argument types" "non-literal" } */
printf (s, i); /* { dg-warning "argument types" "non-literal" } */
}