summaryrefslogtreecommitdiffstats
path: root/bin/dd/dd.h
diff options
context:
space:
mode:
authorasami <asami@FreeBSD.org>1998-02-11 02:23:31 +0000
committerasami <asami@FreeBSD.org>1998-02-11 02:23:31 +0000
commit961b4eea9b84052fffc572e1a344b273fc5f1842 (patch)
treeef15e551f0e1acf483037f2a66a93c157bb134ab /bin/dd/dd.h
parent5cb8382644780b0373c0ffb7f8578503885b687f (diff)
downloadFreeBSD-src-961b4eea9b84052fffc572e1a344b273fc5f1842.zip
FreeBSD-src-961b4eea9b84052fffc572e1a344b273fc5f1842.tar.gz
Fix printing for bytes read > 4G.
Reviewed by: bde
Diffstat (limited to 'bin/dd/dd.h')
-rw-r--r--bin/dd/dd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/dd/dd.h b/bin/dd/dd.h
index 477f444..58a1568 100644
--- a/bin/dd/dd.h
+++ b/bin/dd/dd.h
@@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* @(#)dd.h 8.3 (Berkeley) 4/2/94
- * $Id: dd.h,v 1.6 1997/02/22 14:02:45 peter Exp $
+ * $Id: dd.h,v 1.7 1997/10/11 20:09:05 joerg Exp $
*/
/* Input/output stream state. */
@@ -69,7 +69,7 @@ typedef struct {
u_long out_part; /* # of partial output blocks */
u_long trunc; /* # of truncated records */
u_long swab; /* # of odd-length swab blocks */
- u_long bytes; /* # of bytes written */
+ u_int64_t bytes; /* # of bytes written */
double start; /* start time of dd */
} STAT;
OpenPOWER on IntegriCloud