diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2005-12-03 00:41:57 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2005-12-03 00:41:57 +0100 |
commit | f1df064766075ac2f36fb4027a4a683964f3be9a (patch) | |
tree | 6b1aaa6978dd0f6f2af2c8d8829506be2de09fbf /protocols/nogaim.c | |
parent | 027d2ebf750a011bf544f7d279cfb706594e5d05 (diff) |
Oops...
A
very
small
typo
caused very weird problems in the line splitting code.
Diffstat (limited to 'protocols/nogaim.c')
-rw-r--r-- | protocols/nogaim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/nogaim.c b/protocols/nogaim.c index 101cbb14..d0676201 100644 --- a/protocols/nogaim.c +++ b/protocols/nogaim.c @@ -665,7 +665,7 @@ void serv_got_im( struct gaim_connection *gc, char *handle, char *msg, guint32 f /* If there's a newline/space in this string, split up there, looks a bit prettier. */ - if( ( nl = strrchr( msg, '\n' ) ) || ( nl = strchr( msg, ' ' ) ) ) + if( ( nl = strrchr( msg, '\n' ) ) || ( nl = strrchr( msg, ' ' ) ) ) { msg[425] = tmp; tmp = *nl; |