mirror of https://github.com/BOINC/boinc.git
parent
b426db53a4
commit
40306067cb
|
@ -14178,3 +14178,9 @@ David 2 Dec 2005
|
|||
|
||||
cliengui/
|
||||
DlgSelectComputer.cpp
|
||||
|
||||
David 2 Dec 2005
|
||||
- compile fix for 64-bit machines
|
||||
|
||||
lib/
|
||||
shmem.C
|
||||
|
|
|
@ -196,7 +196,7 @@ int attach_shmem(key_t key, void** pp){
|
|||
return ERR_SHMGET;
|
||||
}
|
||||
p = shmat(id, 0, 0);
|
||||
if ((int)p == -1) {
|
||||
if ((long)p == -1) {
|
||||
return ERR_SHMAT;
|
||||
}
|
||||
*pp = p;
|
||||
|
|
Loading…
Reference in New Issue