|
6 | 6 | * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
|
7 | 7 | * Portions Copyright (c) 1994, Regents of the University of California
|
8 | 8 | *
|
9 |
| - *$PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.27 2004/04/27 18:36:31 momjian Exp $ |
| 9 | + *$PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.28 2004/04/27 18:40:50 momjian Exp $ |
10 | 10 | *
|
11 | 11 | *This program tests to see if your standard libc functions use
|
12 | 12 | *pthread_setspecific()/pthread_getspecific() to be thread-safe.
|
@@ -100,6 +100,7 @@ main(int argc, char *argv[])
|
100 | 100 | temp_filename_1=malloc(strlen(TEMP_FILENAME_1)+1);
|
101 | 101 | strcpy(temp_filename_1,TEMP_FILENAME_1);
|
102 | 102 | mktemp(temp_filename_1);
|
| 103 | + |
103 | 104 | temp_filename_2=malloc(strlen(TEMP_FILENAME_2)+1);
|
104 | 105 | strcpy(temp_filename_2,TEMP_FILENAME_2);
|
105 | 106 | mktemp(temp_filename_2);
|
|