projects
/
rodin
/
chimara.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
278e686
)
Fixed assertion in glk_stream_set_position()
author
Philip Chimento
<philip.chimento@gmail.com>
Sun, 24 May 2009 08:32:12 +0000
(08:32 +0000)
committer
Philip Chimento
<philip.chimento@gmail.com>
Sun, 24 May 2009 08:32:12 +0000
(08:32 +0000)
git-svn-id: http://lassie.dyndns-server.com/svn/gargoyle-gtk@79
ddfedd41
-794f-dd11-ae45-
00112f111e67
libchimara/strio.c
patch
|
blob
|
history
diff --git
a/libchimara/strio.c
b/libchimara/strio.c
index 921b75cc771f0331828220061dbfc9030726fcd1..a33f13f7f53413e41037e3d41dcf90e0c1d79a36 100644
(file)
--- a/
libchimara/strio.c
+++ b/
libchimara/strio.c
@@
-1136,7
+1136,7
@@
glk_stream_set_position(strid_t str, glsi32 pos, glui32 seekmode)
{
VALID_STREAM(str, return);
g_return_if_fail(!(seekmode == seekmode_Start && pos < 0));
- g_return_if_fail(!(seekmode == seekmode_End
||
pos > 0));
+ g_return_if_fail(!(seekmode == seekmode_End
&&
pos > 0));
switch(str->type)
{