summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhang Wanming <Wanming.Zhang@tieto.com>2010-12-31 16:50:57 +0800
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2010-12-31 12:20:45 +0100
commit8a723cfc93a36bde321ead69bd4ad9b50764b7dc (patch)
tree21cec96011c302d6f167faf6e13b9d1b2dca816f
parent2633ecf4f1b1802c59daff83504be162566f9ab3 (diff)
gstfdsink: fix typo
Signed-off-by: Zhang Wanming <Wanming.Zhang@tieto.com>
-rw-r--r--plugins/elements/gstfdsink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/elements/gstfdsink.c b/plugins/elements/gstfdsink.c
index 3389f1f54e..6383d2a99c 100644
--- a/plugins/elements/gstfdsink.c
+++ b/plugins/elements/gstfdsink.c
@@ -521,7 +521,7 @@ gst_fd_sink_do_seek (GstFdSink * fdsink, guint64 new_offset)
521 521
522 fdsink->current_pos = new_offset; 522 fdsink->current_pos = new_offset;
523 523
524 GST_DEBUG_OBJECT (fdsink, "File desciptor %d to seek to position " 524 GST_DEBUG_OBJECT (fdsink, "File descriptor %d to seek to position "
525 "%" G_GUINT64_FORMAT, fdsink->fd, fdsink->current_pos); 525 "%" G_GUINT64_FORMAT, fdsink->fd, fdsink->current_pos);
526 526
527 return TRUE; 527 return TRUE;
@@ -529,7 +529,7 @@ gst_fd_sink_do_seek (GstFdSink * fdsink, guint64 new_offset)
529 /* ERRORS */ 529 /* ERRORS */
530seek_failed: 530seek_failed:
531 { 531 {
532 GST_DEBUG_OBJECT (fdsink, "File desciptor %d failed to seek to position " 532 GST_DEBUG_OBJECT (fdsink, "File descriptor %d failed to seek to position "
533 "%" G_GUINT64_FORMAT, fdsink->fd, new_offset); 533 "%" G_GUINT64_FORMAT, fdsink->fd, new_offset);
534 return FALSE; 534 return FALSE;
535 } 535 }