Skip to content

Commit

Permalink
Add missing else
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeems committed Oct 12, 2024
1 parent 7ebdbe5 commit fb2d5f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/liboxide/oxide_sentry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void logMachineIdError(int error, QString name, QString path){
O_WARNING(path + " has the incorrect format");
}else if(error == -EPERM){
O_WARNING(path + " access denied");
} if(error == -EINVAL){
}else if(error == -EINVAL){
O_WARNING("Error while reading " + name + ": Buffer invalid");
}else if(error == -ENXIO){
O_WARNING("Error while reading " + name + ": No invocation ID is set");
Expand Down

0 comments on commit fb2d5f6

Please sign in to comment.