Index: /trunk/xcache/xc_lock.c
===================================================================
--- /trunk/xcache/xc_lock.c	(revision 1197)
+++ /trunk/xcache/xc_lock.c	(revision 1198)
@@ -39,5 +39,5 @@
 #	define LCK_NB 0
 static inline int dolock(xc_lock_t *lck, int type) /* {{{ */
-{ 
+{
 	int ret;
 	struct flock lock;
@@ -70,5 +70,5 @@
 #	define LCK_NB LOCKFILE_FAIL_IMMEDIATELY
 static inline int dolock(xc_lock_t *lck, int type) /* {{{ */
-{ 
+{
 	static OVERLAPPED offset = {0, 0, 0, 0, NULL};
 
@@ -137,5 +137,5 @@
 /* }}} */
 void xc_fcntl_destroy(xc_lock_t *lck) /* {{{ */
-{   
+{
 	close(lck->fd);
 #ifdef __CYGWIN__
@@ -147,5 +147,5 @@
 /* }}} */
 void xc_fcntl_lock(xc_lock_t *lck) /* {{{ */
-{   
+{
 	if (dolock(lck, LCK_WR) < 0) {
 		zend_error(E_ERROR, "xc_fcntl_lock failed errno:%d", errno);
@@ -154,5 +154,5 @@
 /* }}} */
 void xc_fcntl_rdlock(xc_lock_t *lck) /* {{{ */
-{   
+{
 	if (dolock(lck, LCK_RD) < 0) {
 		zend_error(E_ERROR, "xc_fcntl_lock failed errno:%d", errno);
@@ -161,5 +161,5 @@
 /* }}} */
 void xc_fcntl_unlock(xc_lock_t *lck) /* {{{ */
-{   
+{
 	if (dolock(lck, LCK_UN) < 0) {
 		zend_error(E_ERROR, "xc_fcntl_unlock failed errno:%d", errno);
