Skip to content

Commit

Permalink
Fix Leash AddDisplayItem() declaration
Browse files Browse the repository at this point in the history
Commit a9cbbf0 changed three
parameters in AddDisplayItem() from long to time_t, but did not change
the corresponding declaration in LeashView.h.  Fix that now.

ticket: 8640
tags: pullup
target_version: 1.16-next
  • Loading branch information
greghudson committed Feb 7, 2018
1 parent 364c608 commit b1367ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/windows/leash/LeashView.h
Expand Up @@ -218,9 +218,9 @@ class CLeashView : public CListView
CCacheDisplayData *elem,
int iItem,
char *principal,
long issued,
long valid_until,
long renew_until,
time_t issued,
time_t valid_until,
time_t renew_until,
char *encTypes,
unsigned long flags,
char *cache_name);
Expand Down

0 comments on commit b1367ab

Please sign in to comment.