Reformatting changes with an update to the MSVC project files
diff --git a/silk/debug.c b/silk/debug.c
index b8a31b3..5dfcaa9 100644
--- a/silk/debug.c
+++ b/silk/debug.c
@@ -42,7 +42,7 @@
 #include <sys/time.h>
 #endif
 
-unsigned long silk_GetHighResolutionTime(void) /* O: time in usec*/
+unsigned long silk_GetHighResolutionTime(void) /* O  time in usec*/
 {
     /* Returns a time counter in microsec   */
     /* the resolution is platform dependent */
@@ -54,7 +54,7 @@
     return (unsigned long)((1000000*(lpPerformanceCount.QuadPart)) / lpFrequency.QuadPart);
 }
 #else   /* Linux or Mac*/
-unsigned long GetHighResolutionTime(void) /* O: time in usec*/
+unsigned long GetHighResolutionTime(void) /* O  time in usec*/
 {
     struct timeval tv;
     gettimeofday(&tv, 0);