1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Fix lx_alarm bug which also caused issue compiling on 8.x and bump PORTREVISION.

This commit is contained in:
Kris Moore 2010-12-20 20:06:38 +00:00
parent 4001f01e8d
commit 44f0823ff0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=266664
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= lxpanel
PORTVERSION= 0.5.6
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= x11
MASTER_SITES= SF/lxde/LXPanel%20%28desktop%20panel%29/LXPanel%20${PORTVERSION}

View File

@ -76,7 +76,7 @@
if (alarmCanRun) {
- alarm *a = (alarm *) malloc(sizeof(alarm));
+ lx_alarm *a = (lx_alarm *) malloc(sizeof(alarm));
+ lx_alarm *a = (lx_alarm *) malloc(sizeof(lx_alarm));
a->command = lx_b->alarmCommand;
a->lock = &(lx_b->alarmProcessLock);