Fix typos in comments and debug output strings.
authorTimo Wiren <timo.wiren@gmail.com>
Mon, 20 Sep 2010 22:27:34 +0000 (15:27 -0700)
committerEric Anholt <eric@anholt.net>
Mon, 20 Sep 2010 22:28:32 +0000 (15:28 -0700)
Bug #30208.

src/mesa/drivers/dri/common/vblank.c
src/mesa/drivers/dri/common/xmlconfig.c
src/mesa/drivers/dri/intel/intel_context.c

index 49b22a2dc726c6b84172e9ebab14dd6f1192698e..cb98dd0b3a38a8396cb64b0d6652e610c55e700d 100644 (file)
@@ -241,7 +241,7 @@ GLuint driGetDefaultVBlankFlags( const driOptionCache *optionCache )
  * the first time the \c drmWaitVBlank fails.  If \c drmWaitVBlank is
  * successful, \c vbl_seq will be set the sequence value in the reply.
  *
- * \param vbl      Pointer to drmVBlank packet desribing how to wait.
+ * \param vbl      Pointer to drmVBlank packet describing how to wait.
  * \param vbl_seq  Location to store the current refresh counter.
  * \param fd       File descriptor use to call into the DRM.
  * \return         Zero on success or -1 on failure.
index 738b1ae97fd374d0caeeb2196becc861245d0dad..bde6b23c7cff1995d54782f011599d7d6aeb2222 100644 (file)
@@ -206,7 +206,7 @@ static GLint strToI (const XML_Char *string, const XML_Char **tail, int base) {
  *
  * Works similar to strtod. Leading space is NOT skipped. The input
  * number may have an optional sign. '.' is interpreted as decimal
- * point and may occor at most once. Optionally the number may end in
+ * point and may occur at most once. Optionally the number may end in
  * [eE]<exponent>, where <exponent> is an integer as recognized by
  * strToI. In that case the result is number * 10^exponent. After
  * returning tail points to the first character that is not part of
@@ -728,7 +728,7 @@ static void parseDeviceAttr (struct OptConfData *data, const XML_Char **attr) {
     for (i = 0; attr[i]; i += 2) {
        if (!strcmp (attr[i], "driver")) driver = attr[i+1];
        else if (!strcmp (attr[i], "screen")) screen = attr[i+1];
-       else XML_WARNING("unkown device attribute: %s.", attr[i]);
+       else XML_WARNING("unknown device attribute: %s.", attr[i]);
     }
     if (driver && strcmp (driver, data->driverName))
        data->ignoringDevice = data->inDevice;
@@ -748,7 +748,7 @@ static void parseAppAttr (struct OptConfData *data, const XML_Char **attr) {
     for (i = 0; attr[i]; i += 2) {
        if (!strcmp (attr[i], "name")) name = attr[i+1];
        else if (!strcmp (attr[i], "executable")) exec = attr[i+1];
-       else XML_WARNING("unkown application attribute: %s.", attr[i]);
+       else XML_WARNING("unknown application attribute: %s.", attr[i]);
     }
     if (exec && strcmp (exec, data->execName))
        data->ignoringApp = data->inApp;
@@ -761,7 +761,7 @@ static void parseOptConfAttr (struct OptConfData *data, const XML_Char **attr) {
     for (i = 0; attr[i]; i += 2) {
        if (!strcmp (attr[i], "name")) name = attr[i+1];
        else if (!strcmp (attr[i], "value")) value = attr[i+1];
-       else XML_WARNING("unkown option attribute: %s.", attr[i]);
+       else XML_WARNING("unknown option attribute: %s.", attr[i]);
     }
     if (!name) XML_WARNING1 ("name attribute missing in option.");
     if (!value) XML_WARNING1 ("value attribute missing in option.");
index 08069d71dd1fd18af8ad0bb4e5ebf217aec7f415..109c670c144553eb6d57b0529af86f8782db115f 100644 (file)
@@ -354,7 +354,7 @@ intel_update_renderbuffers(__DRIcontext *context, __DRIdrawable *drawable)
        case __DRI_BUFFER_ACCUM:
        default:
           fprintf(stderr,
-                  "unhandled buffer attach event, attacment type %d\n",
+                  "unhandled buffer attach event, attachment type %d\n",
                   buffers[i].attachment);
           return;
        }