Skip to content

Commit

Permalink
Update getting_started.md
Browse files Browse the repository at this point in the history
Gets code to compile when copy-and-pasted
  • Loading branch information
spencer-lunarg authored and charles-lunarg committed Feb 8, 2025
1 parent a1850cf commit e7a041e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ To query the available layers and extensions, get a `SystemInfo` struct from `Sy
```cpp
auto system_info_ret = vkb::SystemInfo::get_system_info();
if (!system_info_ret) {
printf("%s\n", system_info_ret.error().message());
std::cerr << system_info_ret.error().message().c_str() << "\n";
return -1;
}
auto system_info = system_info_ret.value();
Expand Down

0 comments on commit e7a041e

Please sign in to comment.