Skip to content

Commit

Permalink
add newline to error message, add /build to gitignore file
Browse files Browse the repository at this point in the history
  • Loading branch information
rscohn2 authored and bmyates committed Aug 14, 2020
1 parent fcc7b7a commit 4b3e878
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
2 changes: 1 addition & 1 deletion samples/include/zello_init.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ inline bool init_ze( void )
catch( const ze::exception_t& e )
{
std::cout << "Driver not initialized!\n";
std::cout << e.what();
std::cout << e.what() << "\n";
return false;
}
return true;
Expand Down

0 comments on commit 4b3e878

Please sign in to comment.