Skip to content

Commit 0e7e38d

Browse files
committed
some linting
1 parent a99127d commit 0e7e38d

4 files changed

Lines changed: 1376 additions & 1374 deletions

File tree

binding.gyp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"targets": [{
33
"target_name": "node_snap7",
44
"include_dirs": [
5-
"<!(node -e \"require('nan')\")"
5+
"<!(node -e \"require('nan')\")",
6+
"./src"
67
],
78
"sources": [
89
"./src/node_snap7.cpp",

src/node_snap7.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
* MIT License <https://github.com/mathiask88/node-snap7/blob/master/LICENSE>
44
*/
55

6-
#include "node_snap7_client.h"
6+
#include <node_snap7_client.h>
77

8-
extern "C"{
9-
void InitAll(v8::Handle<v8::Object> exports) {
10-
node_snap7::S7Client::Init(exports);
11-
}
8+
extern "C" {
9+
void InitAll(v8::Handle<v8::Object> exports) {
10+
node_snap7::S7Client::Init(exports);
11+
}
1212
}
1313

1414
NODE_MODULE(node_snap7, InitAll)

0 commit comments

Comments
 (0)