summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorPhil Jones <philj56@gmail.com>2022-11-19 19:33:57 +0000
committerPhil Jones <philj56@gmail.com>2022-11-19 19:33:57 +0000
commit8ab1b98328d720dec70087f0435210cdd5c67852 (patch)
treec084a2faf2be548f67450dca5c4d6d92adfee4c1 /src/main.c
parent5da0579864a13b11bf0808f7f69f7b22f18054b1 (diff)
Make vector finding functions names clearer.
This adds `_sorted` to the names of `string_vec_find` and `desktop_vec_find`, to make it clear that these functions require their input to already be sorted. Also fix a potential bug from not sorting the list of desktops in drun mode.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 9d9f4d9..f851963 100644
--- a/src/main.c
+++ b/src/main.c
@@ -963,7 +963,7 @@ static bool do_submit(struct tofi *tofi)
* we previously sorted by history count. This needs fixing.
*/
desktop_vec_sort(&entry->apps);
- struct desktop_entry *app = desktop_vec_find(&entry->apps, res);
+ struct desktop_entry *app = desktop_vec_find_sorted(&entry->apps, res);
if (app == NULL) {
log_error("Couldn't find application file! This shouldn't happen.\n");
return false;