1
0
mirror of https://github.com/SuperBFG7/ympd synced 2024-11-05 22:36:16 +00:00

Fix: code cleanups

This commit is contained in:
jcorporation 2018-11-29 19:52:29 +01:00
parent 2ebb523ada
commit 7db9e2f9cd
3 changed files with 5 additions and 5 deletions

View File

@ -805,7 +805,7 @@ void callback_mympd(struct mg_connection *nc, const struct mg_str msg) {
#ifdef DEBUG
clock_gettime(CLOCK_MONOTONIC_RAW, &end);
uint64_t delta_us = (end.tv_sec - start.tv_sec) * 1000000 + (end.tv_nsec - start.tv_nsec) / 1000;
fprintf(stderr, "DEBUG: Time used: %llu\n", delta_us);
fprintf(stderr, "DEBUG: Time used: %lu\n", delta_us);
#endif
if (n == 0)
@ -2417,7 +2417,7 @@ int mympd_search_adv(char *buffer, char *expression, char *sort, bool sortdesc,
else
len = json_printf(&out, "{type: result, data: ok}");
#else
len = json_printf(&out, "{type: error, data: %s}", "Advanced search is disabled.");
len = json_printf(&out, "{type: error, data: %Q}", "Advanced search is disabled.");
#endif
CHECK_RETURN_LEN();
return len;

View File

@ -500,8 +500,8 @@ int main(int argc, char **argv) {
snprintf(testdirname, 400, "%s/library", SRC_PATH);
if (testdir("Link to mpd music_directory", testdirname)) {
LOG_INFO() printf("Enabling featLibrary support\n");
mpd.feat_library = true;
LOG_INFO() printf("Enabling coverimage support\n");
}
else {
LOG_INFO() printf("Disabling coverimage support\n");