From a7f1a3f9ffe6c2effeec20809d89a9dcf4234495 Mon Sep 17 00:00:00 2001 From: chip Date: Sun, 3 Dec 2000 19:20:25 +0000 Subject: 2000-12-03 Chip Salzenberg * support/nfs/xio.c (xfopen): Initialize x_line to one, not zero. --- support/nfs/xio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'support/nfs/xio.c') diff --git a/support/nfs/xio.c b/support/nfs/xio.c index 0a250fc..db5e2c3 100644 --- a/support/nfs/xio.c +++ b/support/nfs/xio.c @@ -29,7 +29,7 @@ xfopen(char *fname, char *type) return NULL; xfp = (XFILE *) xmalloc(sizeof(*xfp)); xfp->x_fp = fp; - xfp->x_line = 0; + xfp->x_line = 1; return xfp; } -- cgit