Merge branch 'master' into sru_2_0
[yaz-moved-to-github.git] / src / dirent.c
index 3b69285..0a3fa20 100644 (file)
@@ -1,9 +1,9 @@
 /* This file is part of the YAZ toolkit.
- * Copyright (C) 1995-2012 Index Data
+ * Copyright (C) 1995-2013 Index Data
  * See the file LICENSE for details.
  */
 
-/** \file 
+/** \file
     \brief Implement opendir/readdir/closedir on Windows
 */
 
@@ -40,7 +40,7 @@ DIR *opendir(const char *name)
     dd->handle = FindFirstFile(fullName, &dd->find_data);
     return dd;
 }
-                                                          
+
 struct dirent *readdir(DIR *dd)
 {
     if (dd->handle == INVALID_HANDLE_VALUE)