diff --git a/src/bin/gravatar.c b/src/bin/gravatar.c index bfa4e641..fbcf57a4 100644 --- a/src/bin/gravatar.c +++ b/src/bin/gravatar.c @@ -6,7 +6,7 @@ #include "config.h" #include "termio.h" #include "media.h" -#include "md5/md5.h" +#include "md5.h" #include "utils.h" /* specific log domain to help debug the gravatar module */ diff --git a/src/bin/md5/md5.c b/src/bin/md5.c similarity index 100% rename from src/bin/md5/md5.c rename to src/bin/md5.c diff --git a/src/bin/md5/md5.h b/src/bin/md5.h similarity index 100% rename from src/bin/md5/md5.h rename to src/bin/md5.h diff --git a/src/bin/meson.build b/src/bin/meson.build index d8ed7cbc..af4db58c 100644 --- a/src/bin/meson.build +++ b/src/bin/meson.build @@ -31,7 +31,7 @@ terminology_sources = ['private.h', 'termptygfx.c', 'termptygfx.h', 'termptyext.c', 'termptyext.h', 'backlog.c', 'backlog.h', - 'md5/md5.c', 'md5/md5.h', + 'md5.c', 'md5.h', 'utf8.c', 'utf8.h', 'win.c', 'win.h', 'utils.c', 'utils.h', @@ -77,7 +77,7 @@ tytest_sources = ['termptyesc.c', 'termptyesc.h', 'sb.c', 'sb.h', 'utf8.c', 'utf8.h', 'utils.c', 'utils.h', - 'md5/md5.c', 'md5/md5.h', + 'md5.c', 'md5.h', 'unit_tests.h', 'tytest_common.c', 'tytest_common.h', 'tytest.c', 'tytest.h'] diff --git a/src/bin/tytest.c b/src/bin/tytest.c index b0521edd..5e06ca7a 100644 --- a/src/bin/tytest.c +++ b/src/bin/tytest.c @@ -18,7 +18,7 @@ #include "unit_tests.h" #include "tytest_common.h" -#include "md5/md5.h" +#include "md5.h" int _log_domain = -1;