Skip to content

Commit

Permalink
Fix wrong indentation (tabs)
Browse files Browse the repository at this point in the history
  • Loading branch information
tibbe committed Dec 24, 2009
1 parent c135832 commit 728e3e4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Network/Socket.hsc
Expand Up @@ -780,9 +780,11 @@ recvLen sock@(MkSocket s _family _stype _protocol status) nbytes
len <-
#if defined(__GLASGOW_HASKELL__) && defined(mingw32_HOST_OS)
# if __GLASGOW_HASKELL__ >= 611
readRawBufferPtr "Network.Socket.recvLen" (socket2FD sock) ptr 0 (fromIntegral nbytes)
readRawBufferPtr "Network.Socket.recvLen" (socket2FD sock) ptr 0
(fromIntegral nbytes)
#else
readRawBufferPtr "Network.Socket.recvLen" (fromIntegral s) True ptr 0
readRawBufferPtr "Network.Socket.recvLen" (fromIntegral s) True ptr 0
(fromIntegral nbytes)
#endif
#else
# if !defined(__HUGS__)
Expand Down

0 comments on commit 728e3e4

Please sign in to comment.