diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-01-17 10:14:17 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-01-17 10:14:17 +0800 |
commit | a57329a173148e4804fe09a196fb73f87e047a02 (patch) | |
tree | a762a873ebcfcefa509e2790bf52de4a0f146f90 | |
parent | a8acf02a64906ad1f3d84dd047ef1ad1bc61ac3e (diff) | |
download | gsoc2013-evolution-a57329a173148e4804fe09a196fb73f87e047a02.tar gsoc2013-evolution-a57329a173148e4804fe09a196fb73f87e047a02.tar.gz gsoc2013-evolution-a57329a173148e4804fe09a196fb73f87e047a02.tar.bz2 gsoc2013-evolution-a57329a173148e4804fe09a196fb73f87e047a02.tar.lz gsoc2013-evolution-a57329a173148e4804fe09a196fb73f87e047a02.tar.xz gsoc2013-evolution-a57329a173148e4804fe09a196fb73f87e047a02.tar.zst gsoc2013-evolution-a57329a173148e4804fe09a196fb73f87e047a02.zip |
Add an int i so this code will compile. Should I be worried about how well
2001-01-16 Jeffrey Stedfast <fejj@ximian.com>
* camel-folder-summary.c (camel_folder_summary_array): Add an int
i so this code will compile. Should I be worried about how well
this code will work? ;-)
svn path=/trunk/; revision=7562
-rw-r--r-- | camel/ChangeLog | 6 | ||||
-rw-r--r-- | camel/camel-folder-summary.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 7d28001cc9..c43603e547 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,9 @@ +2001-01-16 Jeffrey Stedfast <fejj@ximian.com> + + * camel-folder-summary.c (camel_folder_summary_array): Add an int + i so this code will compile. Should I be worried about how well + this code will work? ;-) + 2001-01-17 Not Zed <NotZed@Ximian.com> * camel-folder.c (free_summary): Call diff --git a/camel/camel-folder-summary.c b/camel/camel-folder-summary.c index 52c9a4aa46..452dc02b77 100644 --- a/camel/camel-folder-summary.c +++ b/camel/camel-folder-summary.c @@ -361,7 +361,8 @@ camel_folder_summary_array(CamelFolderSummary *s) { CamelMessageInfo *info; GPtrArray *res = g_ptr_array_new(); - + int i; + CAMEL_SUMMARY_LOCK(s, ref_lock); CAMEL_SUMMARY_LOCK(s, summary_lock); |