Просмотр исходного кода

Merge branch 'master' of github.com:EIPStackGroup/OpENer

Martin Melik-Merkumians 6 лет назад
Родитель
Сommit
fbc887353f
2 измененных файлов с 3 добавлено и 2 удалено
  1. 2 1
      README.md
  2. 1 1
      source/src/ports/WIN32/networkhandler.c

+ 2 - 1
README.md

@@ -35,7 +35,8 @@ installed. You will need to have the following installed:
 * CMake
 * gcc
 * make
-* binutils 
+* binutils
+* the development library of libcap (libcap-dev or equivalient)
  
 for normal building. These should be installed on most Linux installations and
 are part of the development packages of Cygwin.

+ 1 - 1
source/src/ports/WIN32/networkhandler.c

@@ -25,7 +25,7 @@ MicroSeconds GetMicroSeconds() {
 }
 
 MilliSeconds GetMilliSeconds(void) {
-  return (MilliSeconds) (getMicroSeconds() / 1000ULL);
+  return (MilliSeconds) (GetMicroSeconds() / 1000ULL);
 }
 
 EipStatus NetworkHandlerInitializePlatform(void) {