rtsp: avoid const warnings from strtol() call
authorMans Rullgard <mans@mansr.com>
Wed, 25 Apr 2012 22:37:29 +0000 (23:37 +0100)
committerMans Rullgard <mans@mansr.com>
Sun, 6 May 2012 11:04:25 +0000 (12:04 +0100)
commitddce7dabd2dcabac1655e76901192ae6aedecb69
treec997bb89638b9311d370e0ae842510c84b98de5e
parent0de1319ee0109facefe9804ffe0f0d0df36b27ad
rtsp: avoid const warnings from strtol() call

The strtol() interface makes it difficult to use with
const-qualified pointers.  With this change, although
the const is still lost, the compiler does not warn
about it.

Signed-off-by: Mans Rullgard <mans@mansr.com>
libavformat/rtsp.c