diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-12-20 21:22:18 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-12-20 21:22:18 +0000 |
commit | b32478f237d5e590e4714ee52ab5ce96206bae05 (patch) | |
tree | 0554bd8f1a3d08dcfe2f5339a75a8b7f4e5472ad /src/input/input_file.c | |
parent | 2bd4eed87540e5cd507d29cb446977736880cd15 (diff) | |
download | xine-lib-b32478f237d5e590e4714ee52ab5ce96206bae05.tar.gz xine-lib-b32478f237d5e590e4714ee52ab5ce96206bae05.tar.bz2 |
remove all local names beginning with double underscore, because C99
reserves these names for use by the C implementation
CVS patchset: 7288
CVS date: 2004/12/20 21:22:18
Diffstat (limited to 'src/input/input_file.c')
-rw-r--r-- | src/input/input_file.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/input_file.c b/src/input/input_file.c index 9c7cf24fc..55f0af673 100644 --- a/src/input/input_file.c +++ b/src/input/input_file.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: input_file.c,v 1.97 2004/12/12 22:01:06 mroi Exp $ + * $Id: input_file.c,v 1.98 2004/12/20 21:22:20 mroi Exp $ */ #ifdef HAVE_CONFIG_H @@ -551,7 +551,7 @@ static xine_mrl_t **file_class_get_dir (input_class_t *this_gen, } /* Store new origin path */ - __try_again_from_home: + try_again_from_home: this->config->update_string(this->config, "media.files.origin_path", current_dir); @@ -569,7 +569,7 @@ static xine_mrl_t **file_class_get_dir (input_class_t *this_gen, /* Try one more time with user homedir */ snprintf(current_dir, XINE_PATH_MAX, "%s", xine_get_homedir()); already_tried++; - goto __try_again_from_home; + goto try_again_from_home; } return NULL; |