ftmodapi.h: Replace 0xA0 characters with spaces.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
diff --git a/include/freetype/ftmodapi.h b/include/freetype/ftmodapi.h
index 8b0bbe3..1101abb 100644
--- a/include/freetype/ftmodapi.h
+++ b/include/freetype/ftmodapi.h
@@ -332,20 +332,20 @@ FT_BEGIN_HEADER
/**************************************************************************
- *
- * @macro:
- * FT_FACE_DRIVER_NAME
- *
- * @description:
- * A macro that retrieves the name of a font driver from a face object.
- *
- * @note:
- * The font driver name is a valid `module_name` for @FT_Property_Set
+ *
+ * @macro:
+ * FT_FACE_DRIVER_NAME
+ *
+ * @description:
+ * A macro that retrieves the name of a font driver from a face object.
+ *
+ * @note:
+ * The font driver name is a valid `module_name` for @FT_Property_Set
* and @FT_Property_Get. This is not the same as @FT_Get_Font_Format.
- *
- */
+ *
+ */
#define FT_FACE_DRIVER_NAME( face ) \
- ( ( *(FT_Module_Class**)( ( face )->driver ) )->module_name )
+ ( ( *(FT_Module_Class**)( ( face )->driver ) )->module_name )
/**************************************************************************