Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment #851910: Patch proposal to fix the missing return value. for
bug #894994
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
View
|
Details
|
Raw Unified
| Return to
bug 894994
Collapse All
|
Expand All
(-)
libssh2-1.10.0/tests/openssh_fixture.c (-1 / +3 lines)
Lines 212-219 static unsigned int portable_sleep(unsig
Link Here
212
{
212
{
213
#ifdef WIN32
213
#ifdef WIN32
214
Sleep(seconds);
214
Sleep(seconds);
215
216
return 0;
215
#else
217
#else
216
sleep(seconds);
218
return sleep(seconds);
217
#endif
219
#endif
218
}
220
}
219
221
Return to
bug 894994