1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-04-10 15:48:06 -05:00

Fixing trivial warnings spotted by Mingw-2.0.0/gcc-3.2:

plink.c: In function `from_backend':
  plink.c:172: warning: unused variable `h'
(introduced in 1.35 [r1198])

[originally from svn r2331]
[r1198 == c87fa98d09343621fc4ae7c3c8fb197d0feeaa67]
This commit is contained in:
Jacob Nevins 2002-12-15 13:19:59 +00:00
parent 414b896aaf
commit e891f79c12

View File

@ -169,7 +169,6 @@ void try_output(int is_stderr)
int from_backend(void *frontend_handle, int is_stderr, char *data, int len)
{
HANDLE h = (is_stderr ? errhandle : outhandle);
int osize, esize;
assert(len > 0);