Skip to content

Commit 5c269f5

Browse files
committed
Merge pull request #1 from mox-mox/dev
Fix build, add missing brace in readme
2 parents 26dc81a + 54ba420 commit 5c269f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Then just type this in your `CMakeLists.txt`:
2323
add_subdirectory(i3ipc++)
2424
2525
include_directories(${I3IPCpp_INCLUDE_DIRS})
26-
link_directories(${I3IPCpp_LIBRARY_DIRS)
26+
link_directories(${I3IPCpp_LIBRARY_DIRS})
2727
...
2828
```
2929

src/ipc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,8 @@ std::vector<output_t> I3Connection::get_outputs() const {
242242
outputs.push_back({
243243
.name = name.asString(),
244244
.active = active.asBool(),
245-
.rect = parse_rect_from_json(rect),
246245
.current_workspace = (current_workspace.isNull() ? std::string() : current_workspace.asString()),
246+
.rect = parse_rect_from_json(rect),
247247
});
248248
}
249249

0 commit comments

Comments
 (0)