Skip to content

Commit

Permalink
fixing syntax error in code reporting the absence at compilation time…
Browse files Browse the repository at this point in the history
… of hash feature
  • Loading branch information
Edrusb committed Aug 24, 2024
1 parent 665873c commit fe1a7a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libdar/hash_fichier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ namespace libdar
gcry_strsource(err),
gcry_strerror(err)));
#else
throw Ecompilation(gettext("Missing %s hash algorithm support (which is provided with strong encryption support, using libgcrypt)"),
hash_algo_to_string(algo).c_str());
throw Ecompilation(tools_printf(gettext("Missing %s hash algorithm support (which is provided with strong encryption support, using libgcrypt)"),
hash_algo_to_string(algo).c_str()));
#endif
break;

Expand Down

0 comments on commit fe1a7a4

Please sign in to comment.