]> git.sesse.net Git - vlc/commitdiff
fix wording: no --> not
authorJean-Paul Saman <jpsaman@videolan.org>
Fri, 22 May 2009 13:13:45 +0000 (15:13 +0200)
committerJean-Paul Saman <jpsaman@videolan.org>
Fri, 5 Jun 2009 18:55:04 +0000 (20:55 +0200)
src/control/media_player.c

index 347fdf0d2eaaf0bd6c46a43dc1889a99177334c1..1c8ac775206468263dbddf6c1a59be1a0c213900 100644 (file)
@@ -286,7 +286,7 @@ libvlc_media_player_new( libvlc_instance_t * p_libvlc_instance,
     p_mi = malloc( sizeof(libvlc_media_player_t) );
     if( !p_mi )
     {
-        libvlc_exception_raise( p_e, "Not enough memory" );
+        libvlc_exception_raise( p_e, "not enough memory" );
         return NULL;
     }
     p_mi->p_md = NULL;
@@ -1196,7 +1196,7 @@ libvlc_track_description_t *
         malloc( sizeof( libvlc_track_description_t ) );
     if ( !p_track_description )
     {
-        libvlc_exception_raise( p_e, "no enough memory" );
+        libvlc_exception_raise( p_e, "not enough memory" );
         goto end;
     }
     p_actual = p_track_description;
@@ -1210,7 +1210,7 @@ libvlc_track_description_t *
             if ( !p_actual )
             {
                 libvlc_track_description_release( p_track_description );
-                libvlc_exception_raise( p_e, "no enough memory" );
+                libvlc_exception_raise( p_e, "not enough memory" );
                 goto end;
             }
         }