SF.net SVN: geany: [2291] trunk/src/build.c
eht16 at users.sourceforge.net
eht16 at xxxxx
Wed Feb 27 16:09:07 UTC 2008
Revision: 2291
http://geany.svn.sourceforge.net/geany/?rev=2291&view=rev
Author: eht16
Date: 2008-02-27 08:09:06 -0800 (Wed, 27 Feb 2008)
Log Message:
-----------
Fix typos.
Modified Paths:
--------------
trunk/src/build.c
Modified: trunk/src/build.c
===================================================================
--- trunk/src/build.c 2008-02-27 16:08:07 UTC (rev 2290)
+++ trunk/src/build.c 2008-02-27 16:09:06 UTC (rev 2291)
@@ -171,7 +171,7 @@
/* try convert in locale for stat() */
locale_filename = utils_get_locale_from_utf8(view_file);
- /* check wether view_file exists */
+ /* check whether view_file exists */
if (g_stat(locale_filename, &st) != 0)
{
ui_set_statusbar(TRUE, _("Failed to view %s (make sure it is already compiled)"), view_file);
@@ -385,9 +385,9 @@
object_file = g_strdup_printf("%s.o", executable);
- /* check wether object file (file.o) exists */
+ /* check whether object file (file.o) exists */
if (g_stat(object_file, &st) == 0)
- { /* check wether src is newer than object file */
+ { /* check whether src is newer than object file */
if (g_stat(locale_filename, &st2) == 0)
{
if (st2.st_mtime > st.st_mtime)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list