Skip to content

Commit

Permalink
fix: the grid is now filled properly
Browse files Browse the repository at this point in the history
  • Loading branch information
djpiper28 committed Nov 27, 2023
1 parent 841f3c7 commit e3b3e68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mse/card.c
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ int mse_avl_cmp_card(void * restrict a, void * restrict b)
return mse_uuid_cmp(ca->id, cb->id);
}

int mse_avl_cmp_card_name(void *a, void *b)
int mse_avl_cmp_card_name(void * restrict a, void * restrict b)
{
mse_card_t *ca = (mse_card_t *) a;
mse_card_t *cb = (mse_card_t *) b;
Expand Down
2 changes: 1 addition & 1 deletion web-api/async_query.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include <pthread.h>
#include <mse/mse.h>

#define MSE_PAGE_SIZE 50
#define MSE_PAGE_SIZE 52

typedef struct mse_async_query_t {
int ref_count;
Expand Down

0 comments on commit e3b3e68

Please sign in to comment.