mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-06-30 19:12:48 -05:00
Make 'LogContext' a typedef visible throughout the code.
Same principle again - the more of these structures have globally visible tags (even if the structure contents are still opaque in most places), the fewer of them I can mistake for each other.
This commit is contained in:
@ -6687,7 +6687,7 @@ int term_data_untrusted(Terminal *term, const void *vdata, int len)
|
||||
return 0; /* assumes that term_data() always returns 0 */
|
||||
}
|
||||
|
||||
void term_provide_logctx(Terminal *term, void *logctx)
|
||||
void term_provide_logctx(Terminal *term, LogContext *logctx)
|
||||
{
|
||||
term->logctx = logctx;
|
||||
}
|
||||
|
Reference in New Issue
Block a user