From 4d910c7fa8aaa563103b4b484b60d87846bc5836 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Fri, 20 Nov 2015 17:50:14 -0800 Subject: [PATCH] sys: rename files --- build/VStudio/winfsp.vcxproj | 8 ++++---- build/VStudio/winfsp.vcxproj.filters | 8 ++++---- src/sys/{devctrl.c => devctl.c} | 2 +- src/sys/{dirctrl.c => dirctl.c} | 2 +- src/sys/{fsctrl.c => fsctl.c} | 2 +- src/sys/{lockctrl.c => lockctl.c} | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) rename src/sys/{devctrl.c => devctl.c} (94%) rename src/sys/{dirctrl.c => dirctl.c} (95%) rename src/sys/{fsctrl.c => fsctl.c} (95%) rename src/sys/{lockctrl.c => lockctl.c} (94%) diff --git a/build/VStudio/winfsp.vcxproj b/build/VStudio/winfsp.vcxproj index 794359d3..80158255 100644 --- a/build/VStudio/winfsp.vcxproj +++ b/build/VStudio/winfsp.vcxproj @@ -122,15 +122,15 @@ - - + + - - + + diff --git a/build/VStudio/winfsp.vcxproj.filters b/build/VStudio/winfsp.vcxproj.filters index 6cf337e4..bb42f848 100644 --- a/build/VStudio/winfsp.vcxproj.filters +++ b/build/VStudio/winfsp.vcxproj.filters @@ -27,10 +27,10 @@ Source Files - + Source Files - + Source Files @@ -48,10 +48,10 @@ Source Files - + Source Files - + Source Files diff --git a/src/sys/devctrl.c b/src/sys/devctl.c similarity index 94% rename from src/sys/devctrl.c rename to src/sys/devctl.c index 132d7bd9..9a084f79 100644 --- a/src/sys/devctrl.c +++ b/src/sys/devctl.c @@ -1,5 +1,5 @@ /** - * @file sys/devctrl.c + * @file sys/devctl.c * * @copyright 2015 Bill Zissimopoulos */ diff --git a/src/sys/dirctrl.c b/src/sys/dirctl.c similarity index 95% rename from src/sys/dirctrl.c rename to src/sys/dirctl.c index 1f813e9b..09b51ec3 100644 --- a/src/sys/dirctrl.c +++ b/src/sys/dirctl.c @@ -1,5 +1,5 @@ /** - * @file sys/dirctrl.c + * @file sys/dirctl.c * * @copyright 2015 Bill Zissimopoulos */ diff --git a/src/sys/fsctrl.c b/src/sys/fsctl.c similarity index 95% rename from src/sys/fsctrl.c rename to src/sys/fsctl.c index 157efcf3..7735c4ea 100644 --- a/src/sys/fsctrl.c +++ b/src/sys/fsctl.c @@ -1,5 +1,5 @@ /** - * @file sys/fsctrl.c + * @file sys/fsctl.c * * @copyright 2015 Bill Zissimopoulos */ diff --git a/src/sys/lockctrl.c b/src/sys/lockctl.c similarity index 94% rename from src/sys/lockctrl.c rename to src/sys/lockctl.c index f9ccf12a..5fbf352f 100644 --- a/src/sys/lockctrl.c +++ b/src/sys/lockctl.c @@ -1,5 +1,5 @@ /** - * @file sys/lockctrl.c + * @file sys/lockctl.c * * @copyright 2015 Bill Zissimopoulos */