fix tabs to spaces

This commit is contained in:
Bill Zissimopoulos 2018-07-31 17:21:40 -07:00
parent 9160f1c4ce
commit eecb7e00e2
4 changed files with 17 additions and 17 deletions

View File

@ -6,8 +6,8 @@
I am running Windows 7 and I am finding that the installed driver is not signed.:: I am running Windows 7 and I am finding that the installed driver is not signed.::
Your Windows 7 OS is missing SHA-2 Code Signing Support. You need to install the following security advisory that will rectify the problem: Your Windows 7 OS is missing SHA-2 Code Signing Support. You need to install the following security advisory that will rectify the problem:
https://technet.microsoft.com/en-us/library/security/3033929.aspx https://technet.microsoft.com/en-us/library/security/3033929.aspx
Disconnecting (unmapping) a network drive does not work.:: Disconnecting (unmapping) a network drive does not work.::

View File

@ -1,2 +1,2 @@
Taken from secfs.core/src/tlib codebase: Taken from secfs.core/src/tlib codebase:
commit 16296d2ac64a7d532b1c486dd3c44af5865d4851 commit 16296d2ac64a7d532b1c486dd3c44af5865d4851

View File

@ -41,16 +41,16 @@ extern "C" {
struct fuse_opt struct fuse_opt
{ {
const char *templ; const char *templ;
unsigned int offset; unsigned int offset;
int value; int value;
}; };
struct fuse_args struct fuse_args
{ {
int argc; int argc;
char **argv; char **argv;
int allocated; int allocated;
}; };
typedef int (*fuse_opt_proc_t)(void *data, const char *arg, int key, typedef int (*fuse_opt_proc_t)(void *data, const char *arg, int key,

View File

@ -74,17 +74,17 @@ static long long wcstoint(const wchar_t *p, int base, int is_signed)
int wmain(int argc, wchar_t **argv) int wmain(int argc, wchar_t **argv)
{ {
HANDLE Event; HANDLE Event;
ULONG Timeout; ULONG Timeout;
if (argc != 3) if (argc != 3)
return 1; return 1;
Event = (HANDLE)(UINT_PTR)wcstoint(argv[1], 16, 0); Event = (HANDLE)(UINT_PTR)wcstoint(argv[1], 16, 0);
Timeout = wcstoint(argv[2], 16, 0); Timeout = wcstoint(argv[2], 16, 0);
SetEvent(Event); SetEvent(Event);
CloseHandle(Event); CloseHandle(Event);
Sleep(Timeout); Sleep(Timeout);