Skip to content

Commit

Permalink
Update authsql.c
Browse files Browse the repository at this point in the history
Revert unintended TRUE to 1
  • Loading branch information
alan-hicks authored Dec 29, 2021
1 parent 7a16869 commit de26b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/authsql.c
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ char *auth_get_userid(uint64_t user_idnr)
*/
int auth_check_userid(uint64_t user_idnr)
{
C c; R r; volatile gboolean t = 1;
C c; R r; volatile gboolean t = TRUE;

c = db_con_get();
TRY
Expand Down

0 comments on commit de26b66

Please sign in to comment.