blob: 2bc9bc75c2f2ea4701f96cd63fe9a1f7327689b5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- src/pxcsvdump.c.orig Fri Nov 26 10:53:10 1999
+++ src/pxcsvdump.c Sat Nov 27 19:33:36 1999
@@ -74,7 +74,6 @@
printf("%f", PXtoDouble(s, felder[i]->type) );
} else if (felder[i]->type == PX_Field_Type_Date) {
unsigned long s;
- time_t t;
struct tm *_tm;
BLOCK_COPY(&s, felder[i]->size);
@@ -87,7 +86,6 @@
#endif
} else if (felder[i]->type == PX_Field_Type_Timestamp) {
unsigned long long s;
- time_t t;
struct tm *_tm;
BLOCK_COPY(&s, felder[i]->size);
|