Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/common/darktable.c
Original file line number Diff line number Diff line change
Expand Up @@ -2468,7 +2468,7 @@ void dt_configure_runtime_performance(const int old, char *info)
dt_conf_set_bool("cache_disk_backend_full", largedisk);
dt_print(DT_DEBUG_DEV,
"[dt_configure_runtime_performance] cache_disk_backend_full=%s",
(largedisk) ? "TRUE" : "FALSE");
STR_TRUEFALSE(largedisk));
}

gboolean updated_mandatory = FALSE;
Expand Down
4 changes: 4 additions & 0 deletions src/common/darktable.h
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,10 @@ G_BEGIN_DECLS
#define __DT_CLONE_TARGETS__
#endif


#define STR_YESNO(b) ((b) ? "YES" : "NO")
#define STR_TRUEFALSE(b) ((b) ? "TRUE" : "FALSE")

typedef int32_t dt_imgid_t;
typedef int32_t dt_filmid_t;
#define NO_IMGID (0)
Expand Down
Loading
Loading