Fix copy/paste error in windowsaio register/unregister function names.
authorBruce Cran <bruce@cran.org.uk>
Tue, 5 Feb 2013 00:56:59 +0000 (00:56 +0000)
committerJens Axboe <axboe@kernel.dk>
Tue, 5 Feb 2013 07:12:40 +0000 (08:12 +0100)
Signed-off-by: Jens Axboe <axboe@kernel.dk>
engines/windowsaio.c

index 773f027c0e424000cbeaf1137fd44fb04e148798..c0d1bd7d44ea5d9433a9e0878a488e686f034e95 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Native Windows async IO engine
- * Copyright (C) 2012 Bruce Cran <bruce@cran.org.uk>
+ * Copyright (C) 2012-2013 Bruce Cran <bruce@cran.org.uk>
  */
 
 #include <stdio.h>
@@ -525,12 +525,12 @@ static struct ioengine_ops ioengine = {
        .io_u_free      = fio_windowsaio_io_u_free,
 };
 
-static void fio_init fio_posixaio_register(void)
+static void fio_init fio_windowsaio_register(void)
 {
        register_ioengine(&ioengine);
 }
 
-static void fio_exit fio_posixaio_unregister(void)
+static void fio_exit fio_windowsaio_unregister(void)
 {
        unregister_ioengine(&ioengine);
 }