configure.ac: Fix argument quoting for argv[]

m4 quoting.  Yar boo sux.
This commit is contained in:
Julien Cristau 2007-08-01 20:37:05 +03:00 committed by Daniel Stone
parent 99a88826e5
commit a04c95f444

View File

@ -1077,7 +1077,7 @@ if ! test "x$have_clock_gettime" = xno; then
#define _POSIX_C_SOURCE 199309L
#include <time.h>
int main(int argc, char *argv[]) {
int main(int argc, char *argv[[]]) {
struct timespec tp;
if (clock_gettime(CLOCK_MONOTONIC, &tp) == 0)