diff options
author | Patrick Lauer <patrick@gentoo.org> | 2010-11-10 19:11:26 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2010-11-10 19:11:26 +0000 |
commit | 54fcdc15da1c1eff3734305c29c12bcd4fe77adf (patch) | |
tree | 40bc9d5c592b26168a8c4327e1f91d8fa8f5d8d2 /app-benchmarks/bonnie++/files | |
parent | Make repoman happy (diff) | |
download | gentoo-2-54fcdc15da1c1eff3734305c29c12bcd4fe77adf.tar.gz gentoo-2-54fcdc15da1c1eff3734305c29c12bcd4fe77adf.tar.bz2 gentoo-2-54fcdc15da1c1eff3734305c29c12bcd4fe77adf.zip |
Removing unneeded file #340180
(Portage version: 2.2.0_alpha4/cvs/Linux x86_64)
Diffstat (limited to 'app-benchmarks/bonnie++/files')
-rw-r--r-- | app-benchmarks/bonnie++/files/bonnie++-1.94-64bit.patch | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/app-benchmarks/bonnie++/files/bonnie++-1.94-64bit.patch b/app-benchmarks/bonnie++/files/bonnie++-1.94-64bit.patch deleted file mode 100644 index 2af76d8f8c80..000000000000 --- a/app-benchmarks/bonnie++/files/bonnie++-1.94-64bit.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- getc_putc.cpp.old 2004-09-15 02:37:21.500489552 +0200 -+++ getc_putc.cpp 2004-09-15 02:40:58.623481840 +0200 -@@ -165,7 +165,11 @@ - int size = 0, wrote; - while(size < file_size) - { -- wrote = write(FILE_FD, buf, min(sizeof(buf), (unsigned int)file_size - size)); -+ //wrote = write(FILE_FD, buf, min(sizeof(buf), (unsigned int)file_size - size)); -+ /* -+ * gcc doesn't like above line. ? : should do the job as good as min()... -+ */ -+ wrote = write(FILE_FD, buf, (sizeof(buf) < (file_size - size) ? (sizeof(buf)):(file_size - size))); - if(wrote < 0) - { - fprintf(stderr, "Can't extend file - disk full?\n"); |