Changeset f9b6eba7207f9ab55218e406b10929145dcae8e3
- Timestamp:
- 05/09/08 17:05:24
(2 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1210345524 +0300
- git-parent:
[ff9f9ffe159abc135a1e2eae8f4b525365189c81]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1210345524 +0300
- Message:
QueueMsg?: assert p_this
(If you don't want to give an object, then use fprintf() really...)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r973f2f0 |
rf9b6eba |
|
| 269 | 269 | const char *psz_format, va_list _args ) |
|---|
| 270 | 270 | { |
|---|
| | 271 | assert (p_this); |
|---|
| 271 | 272 | libvlc_priv_t *priv = libvlc_priv (p_this->p_libvlc); |
|---|
| 272 | 273 | int i_header_size; /* Size of the additionnal header */ |
|---|
| … | … | |
| 282 | 283 | int i_size = strlen(psz_format) + INTF_MAX_MSG_SIZE; |
|---|
| 283 | 284 | #endif |
|---|
| 284 | | |
|---|
| 285 | | if( p_this == NULL ) |
|---|
| 286 | | { |
|---|
| 287 | | #ifndef NDEBUG |
|---|
| 288 | | if( i_type == VLC_MSG_DBG ) |
|---|
| 289 | | return; |
|---|
| 290 | | #endif |
|---|
| 291 | | utf8_vfprintf( stderr, psz_format, _args ); |
|---|
| 292 | | fputc ('\n', stderr); |
|---|
| 293 | | return; |
|---|
| 294 | | } |
|---|
| 295 | 285 | |
|---|
| 296 | 286 | if( p_this->i_flags & OBJECT_FLAGS_QUIET || |
|---|