Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
GNOME
GLib
Commits
7486cd94
Commit
7486cd94
authored
Jan 28, 2012
by
Ravi Sankar Guntur
Committed by
Allison Karlitskaya
Jan 28, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comments/docs: Fix couple of typos
https://bugzilla.gnome.org/show_bug.cgi?id=668857
parent
9a7a98bf
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
13 additions
and
13 deletions
+13
-13
glib/gbase64.c
glib/gbase64.c
+1
-1
glib/gbookmarkfile.c
glib/gbookmarkfile.c
+1
-1
glib/gchecksum.c
glib/gchecksum.c
+1
-1
glib/gdataset.c
glib/gdataset.c
+2
-2
glib/gdate.c
glib/gdate.c
+1
-1
glib/ggettext.c
glib/ggettext.c
+1
-1
glib/grand.c
glib/grand.c
+1
-1
glib/gsequence.c
glib/gsequence.c
+1
-1
glib/gslice.c
glib/gslice.c
+2
-2
glib/gtester.c
glib/gtester.c
+1
-1
glib/gthread-posix.c
glib/gthread-posix.c
+1
-1
No files found.
glib/gbase64.c
View file @
7486cd94
...
...
@@ -403,7 +403,7 @@ g_base64_decode (const gchar *text,
input_length
=
strlen
(
text
);
/* We can use a smaller limit here, since we know the saved state is 0,
+1 used to avoid calling g_malloc0(0), and hence ret
r
uning NULL */
+1 used to avoid calling g_malloc0(0), and hence retu
r
ning NULL */
ret
=
g_malloc0
((
input_length
/
4
)
*
3
+
1
);
*
out_len
=
g_base64_decode_step
(
text
,
input_length
,
ret
,
&
state
,
&
save
);
...
...
glib/gbookmarkfile.c
View file @
7486cd94
...
...
@@ -1834,7 +1834,7 @@ find_file_in_data_dirs (const gchar *file,
* @full_path. If the file could not be loaded then an %error is
* set to either a #GFileError or #GBookmarkFileError.
*
* Return value: %TRUE if a key file could be loaded, %FALSE othewise
* Return value: %TRUE if a key file could be loaded, %FALSE othe
r
wise
*
* Since: 2.12
*/
...
...
glib/gchecksum.c
View file @
7486cd94
...
...
@@ -564,7 +564,7 @@ sha1_transform (guint32 buf[5],
D
=
buf
[
3
];
E
=
buf
[
4
];
/* Heavy mangling, in 4 sub-rounds of 20 i
n
terations each. */
/* Heavy mangling, in 4 sub-rounds of 20 iterations each. */
subRound
(
A
,
B
,
C
,
D
,
E
,
f1
,
K1
,
in
[
0
]);
subRound
(
E
,
A
,
B
,
C
,
D
,
f1
,
K1
,
in
[
1
]);
subRound
(
D
,
E
,
A
,
B
,
C
,
f1
,
K1
,
in
[
2
]);
...
...
glib/gdataset.c
View file @
7486cd94
...
...
@@ -203,7 +203,7 @@ static inline GQuark g_quark_new (gchar *string);
G_LOCK_DEFINE_STATIC
(
g_dataset_global
);
static
GHashTable
*
g_dataset_location_ht
=
NULL
;
static
GDataset
*
g_dataset_cached
=
NULL
;
/* should this be
threadspecific? */
thread
specific? */
G_LOCK_DEFINE_STATIC
(
g_quark_global
);
static
GHashTable
*
g_quark_ht
=
NULL
;
static
gchar
**
g_quarks
=
NULL
;
...
...
@@ -838,7 +838,7 @@ g_datalist_id_get_data (GData **datalist,
* @key: the string identifying a data element.
* @Returns: the data element, or %NULL if it is not found.
*
* Gets a data element, using its string identifer. This is slower than
* Gets a data element, using its string identif
i
er. This is slower than
* g_datalist_id_get_data() because it compares strings.
**/
gpointer
...
...
glib/gdate.c
View file @
7486cd94
...
...
@@ -1879,7 +1879,7 @@ g_date_get_sunday_weeks_in_year (GDateYear year)
* @lhs: first date to compare
* @rhs: second date to compare
*
* qsort()-style compar
s
ion function for dates.
* qsort()-style compari
s
on function for dates.
* Both dates must be valid.
*
* Returns: 0 for equal, less than zero if @lhs is less than @rhs,
...
...
glib/ggettext.c
View file @
7486cd94
...
...
@@ -144,7 +144,7 @@ glib_gettext (const gchar *str)
* This is an internal function and should only be used by
* the internals of glib (such as libgio).
*
* Returns: the transation of @str to the current locale
* Returns: the trans
l
ation of @str to the current locale
*/
const
gchar
*
glib_pgettext
(
const
gchar
*
msgctxtid
,
...
...
glib/grand.c
View file @
7486cd94
...
...
@@ -321,7 +321,7 @@ g_rand_set_seed (GRand* rand, guint32 seed)
/* [KNUTH 1981, The Art of Computer Programming */
/* Vol. 2 (2nd Ed.), pp102] */
if
(
seed
==
0
)
/* This would make the PRNG pro
cud
e only zeros */
if
(
seed
==
0
)
/* This would make the PRNG pro
duc
e only zeros */
seed
=
0x6b842128
;
/* Just set it to another number */
rand
->
mt
[
0
]
=
seed
;
...
...
glib/gsequence.c
View file @
7486cd94
...
...
@@ -521,7 +521,7 @@ g_sequence_insert_before (GSequenceIter *iter,
* Removes the item pointed to by @iter. It is an error to pass the
* end iterator to this function.
*
* If the sequnce has a data destroy function associated with it, this
* If the sequ
e
nce has a data destroy function associated with it, this
* function is called on the data for the removed item.
*
* Since: 2.14
...
...
glib/gslice.c
View file @
7486cd94
...
...
@@ -410,7 +410,7 @@ g_slice_init_nomessage (void)
* fit less than 8 times (see [4]) into 4KB pages.
* we allow very small page sizes here, to reduce wastage in
* threads if only small allocations are required (this does
* bear the risk of incresing allocation times and fragmentation
* bear the risk of incre
a
sing allocation times and fragmentation
* though).
*/
allocator
->
min_page_size
=
MAX
(
allocator
->
min_page_size
,
4096
);
...
...
@@ -1509,7 +1509,7 @@ smc_notify_free (void *pointer,
/* --- g-slice memory checker tree implementation --- */
#define SMC_TRUNK_COUNT (4093
/* 16381 */
)
/* prime, to distribute trunk collisions (big, allocated just once) */
#define SMC_BRANCH_COUNT (511)
/* prime, to distribute branch collisions */
#define SMC_TRUNK_EXTENT (SMC_BRANCH_COUNT * 2039)
/* key adress space per trunk, should distribute uniformly across BRANCH_COUNT */
#define SMC_TRUNK_EXTENT (SMC_BRANCH_COUNT * 2039)
/* key ad
d
ress space per trunk, should distribute uniformly across BRANCH_COUNT */
#define SMC_TRUNK_HASH(k) ((k / SMC_TRUNK_EXTENT) % SMC_TRUNK_COUNT)
/* generate new trunk hash per megabyte (roughly) */
#define SMC_BRANCH_HASH(k) (k % SMC_BRANCH_COUNT)
...
...
glib/gtester.c
View file @
7486cd94
...
...
@@ -722,7 +722,7 @@ static int
main_selftest
(
int
argc
,
char
**
argv
)
{
/* gtester main() for --gtester-selftest invo
k
ations */
/* gtester main() for --gtester-selftest invo
c
ations */
g_test_init
(
&
argc
,
&
argv
,
NULL
);
g_test_add
(
"/gtester/fixture-test"
,
guint
,
NULL
,
fixture_setup
,
fixture_test
,
fixture_teardown
);
return
g_test_run
();
...
...
glib/gthread-posix.c
View file @
7486cd94
...
...
@@ -834,7 +834,7 @@ g_cond_broadcast (GCond *cond)
* Notice that the end time is calculated once, before entering the
* loop and reused. This is the motivation behind the use of absolute
* time on this API -- if a relative time of 5 seconds were passed
* directly to the call and a spurious wakeup occured, the program would
* directly to the call and a spurious wakeup occur
r
ed, the program would
* have to start over waiting again (which would lead to a total wait
* time of more than 5 seconds).
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment