Files
pkgsrc-ng/net/udpcast/patches/patch-aa
2013-09-26 17:14:40 +02:00

14 lines
395 B
Plaintext

$NetBSD: patch-aa,v 1.1.1.1 2006/08/09 10:04:12 wiz Exp $
--- statistics.c.orig 2005-12-22 22:59:18.000000000 +0000
+++ statistics.c
@@ -37,7 +37,7 @@ void receiverStatsStartTimer(receiver_st
static void printFilePosition(int fd) {
#ifndef WINDOWS
if(fd != -1) {
- loff_t offset = lseek64(fd, 0, SEEK_CUR);
+ off_t offset = lseek(fd, 0, SEEK_CUR);
printLongNum(offset);
}
#endif