1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-11 13:50:48 -05:00

Merge remote-tracking branch 'github/master'

This commit is contained in:
Dave Davenport 2017-03-21 08:40:58 +01:00
commit 5827a3732c

View file

@ -356,9 +356,9 @@ static void walk_dir ( DRunModePrivateData *pd, const char *root, const char *di
static void delete_entry_history ( const DRunModeEntry *entry )
{
char *path = g_build_filename ( cache_dir, DRUN_CACHE_FILE, NULL );
history_remove ( path, entry->path );
char *key = g_strdup_printf ( "%s:::%s", entry->root, entry->path );
history_remove ( path, key );
g_free ( key );
g_free ( path );
}