1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 09:58:01 +00:00

Fix sense of test in previous checkin :)

[originally from svn r5448]
This commit is contained in:
Jacob Nevins 2005-03-06 15:00:45 +00:00
parent be8acb5615
commit d860adb55d

View File

@ -1017,7 +1017,7 @@ static termline *lineptr(Terminal *term, int y, int lineno, int screen)
} }
/* We assume that we don't screw up and retrieve something out of range. */ /* We assume that we don't screw up and retrieve something out of range. */
if (line != NULL) { if (line == NULL) {
fatalbox("line==NULL in terminal.c\n" fatalbox("line==NULL in terminal.c\n"
"lineno=%d y=%d w=%d h=%d\n" "lineno=%d y=%d w=%d h=%d\n"
"count(scrollback=%p)=%d\n" "count(scrollback=%p)=%d\n"