comparison dvdnav.c @ 380:3e3119415275 src

remove obsolete URL from info message (until we get a proper homepage)
author rathann
date Wed, 11 Jun 2008 18:06:43 +0000
parents 2e9382be8e25
children 275f15342ea3
comparison
equal deleted inserted replaced
379:5f2ccadb2123 380:3e3119415275
79 dvdnav_status_t dvdnav_open(dvdnav_t** dest, const char *path) { 79 dvdnav_status_t dvdnav_open(dvdnav_t** dest, const char *path) {
80 dvdnav_t *this; 80 dvdnav_t *this;
81 struct timeval time; 81 struct timeval time;
82 82
83 /* Create a new structure */ 83 /* Create a new structure */
84 fprintf(MSG_OUT, "libdvdnav: Using dvdnav version %s from http://dvd.sf.net\n", VERSION); 84 fprintf(MSG_OUT, "libdvdnav: Using dvdnav version %s\n", VERSION);
85 85
86 (*dest) = NULL; 86 (*dest) = NULL;
87 this = (dvdnav_t*)malloc(sizeof(dvdnav_t)); 87 this = (dvdnav_t*)malloc(sizeof(dvdnav_t));
88 if(!this) 88 if(!this)
89 return DVDNAV_STATUS_ERR; 89 return DVDNAV_STATUS_ERR;