Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2012-03-08 13:36:11 +0400
committerCorinna Vinschen <corinna@vinschen.de>2012-03-08 13:36:11 +0400
commit75543537a16a0911af61045a96926cdb81f51383 (patch)
tree34fa443cb5d7c48e058d17cb2605e10d3947b521 /winsup/cygwin/fhandler_floppy.cc
parent106833e9b360c8f56e465e2e80141a13dc193635 (diff)
* Throughout, replace usage of w32api's min with MIN from sys/param.h.
Diffstat (limited to 'winsup/cygwin/fhandler_floppy.cc')
-rw-r--r--winsup/cygwin/fhandler_floppy.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_floppy.cc b/winsup/cygwin/fhandler_floppy.cc
index 070a30ab5..0caca96e8 100644
--- a/winsup/cygwin/fhandler_floppy.cc
+++ b/winsup/cygwin/fhandler_floppy.cc
@@ -2,7 +2,7 @@
fhandler classes.
Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
- 2009, 2011 Red Hat, Inc.
+ 2009, 2011, 2012 Red Hat, Inc.
This file is part of Cygwin.
@@ -13,6 +13,7 @@ details. */
#include "winsup.h"
#include <alloca.h>
#include <unistd.h>
+#include <sys/param.h>
#include <winioctl.h>
#include <cygwin/rdevio.h>
#include <cygwin/hdreg.h>
@@ -446,7 +447,7 @@ fhandler_dev_floppy::raw_read (void *ptr, size_t& ulen)
{
if (devbufstart < devbufend)
{
- bytes_to_read = min (len, devbufend - devbufstart);
+ bytes_to_read = MIN (len, devbufend - devbufstart);
debug_printf ("read %d bytes from buffer (rest %d)",
bytes_to_read,
devbufend - devbufstart - bytes_to_read);